summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-03-22 18:05:42 +0000
committerChris Lamb <chris@chris-lamb.co.uk>2008-03-22 18:05:42 +0000
commitc70412bcfa677606bc9a2fd02f2d2fe9372e1138 (patch)
treee9ad644b3c4b428097508d96dcd80691e85a74fc
parent7b2994ec0066d03f6cc5ff5be3c132c3f13898df (diff)
downloadvyos-live-build-c70412bcfa677606bc9a2fd02f2d2fe9372e1138.tar.gz
vyos-live-build-c70412bcfa677606bc9a2fd02f2d2fe9372e1138.zip
lh_binary_debian-installer: Remove "local"-oriented bashisms
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-xhelpers/lh_binary_debian-installer7
1 files changed, 5 insertions, 2 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer
index 5d26fe90f..df16f9809 100755
--- a/helpers/lh_binary_debian-installer
+++ b/helpers/lh_binary_debian-installer
@@ -113,8 +113,11 @@ INITRD_GI="gtk/initrd.gz"
DESTDIR_GI="${DESTDIR}/gtk"
Install_file() {
- local FILE="${1}"
- local TARGET="${2}"
+ local FILE
+ FILE="${1}"
+
+ local TARGET
+ TARGET="${2}"
SOURCE="$(dpkg -f ${FILE} Source | awk '{ print $1 }')"