summaryrefslogtreecommitdiffstats
path: root/debootstrap
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-01-13 18:53:42 (GMT)
committerColin Watson <cjwatson@debian.org>2009-01-13 18:53:42 (GMT)
commitac2d34b37cb7467ba143c62e8178a9a1ab67db76 (patch)
treed6640397b613e76b8eec652724601f3868f8f064 /debootstrap
parentd7cf419e82ed61ab220528daf1c94e764e0b1230 (diff)
downloaddebootstrap-ac2d34b37cb7467ba143c62e8178a9a1ab67db76.zip
debootstrap-ac2d34b37cb7467ba143c62e8178a9a1ab67db76.tar.gz
debootstrap-ac2d34b37cb7467ba143c62e8178a9a1ab67db76.tar.bz2
Fix --make-tarball= option (closes: #484869).
r57239
Diffstat (limited to 'debootstrap')
-rwxr-xr-xdebootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/debootstrap b/debootstrap
index 0e1b10e..bb85db4 100755
--- a/debootstrap
+++ b/debootstrap
@@ -172,8 +172,8 @@ if [ $# != 0 ] ; then
if [ "$1" = "--make-tarball" -a -n "$2" ] ; then
MAKE_TARBALL="$2"
shift 2
- elif [ "$1" != "${1#--mnake-tarball=}" ]; then
- MAKE_TARBALL="${1#--mnake-tarball=}"
+ elif [ "$1" != "${1#--make-tarball=}" ]; then
+ MAKE_TARBALL="${1#--make-tarball=}"
shift
else
error 1 NEEDARG "option requires an argument %s" "$1"