summaryrefslogtreecommitdiff
path: root/debian/postinst
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2004-07-10 01:03:04 +0000
committerColin Watson <cjwatson@debian.org>2004-07-10 01:03:04 +0000
commit6858e123497aee69dedce5d22fcacec99c7043b4 (patch)
tree87a846b0dba3d2ca8d6d4807dc496f329bfd2655 /debian/postinst
parent732e2910cec06957b386994fb9bdf4b8f7c7b574 (diff)
Fix bashisms in maintainer scripts (thanks, David Weinehall; partial fix
for #258517).
Diffstat (limited to 'debian/postinst')
-rw-r--r--debian/postinst4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/postinst b/debian/postinst
index b641769ba..ac5e1c555 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -28,9 +28,9 @@ check_idea_key() {
28 28
29 29
30create_key() { 30create_key() {
31 local msg="$1" 31 msg="$1"
32 shift 32 shift
33 local file="$1" 33 file="$1"
34 shift 34 shift
35 35
36 if [ ! -f "$file" ] ; then 36 if [ ! -f "$file" ] ; then