From ecb4323555929b7179471f2382db9a4e164a1d49 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Tue, 28 May 2019 08:50:10 -0700 Subject: [PATCH] Possibly fix "maintainer-shell-script-fails-syntax-check" message Cause is cryptic, but could be due to the shebang: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=478192 --- source/debian/postinst | 2 +- source/debian/postrm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/debian/postinst b/source/debian/postinst index 3c97ce3..27680f4 100755 --- a/source/debian/postinst +++ b/source/debian/postinst @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash set -e diff --git a/source/debian/postrm b/source/debian/postrm index bc69092..b040d80 100755 --- a/source/debian/postrm +++ b/source/debian/postrm @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash set -e -- GitLab