summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2011-07-16 18:19:23 (GMT)
committerColin Watson <cjwatson@debian.org>2011-07-16 18:19:23 (GMT)
commitbb4b5a551acba5469b5296ef16e61d9e38fa81a4 (patch)
tree0869401f627a072aace4b3ad5540adeb7fdb8fd7 /functions
parent2db2d73de95d388fe968d591929c107df722b4fe (diff)
downloaddebootstrap-bb4b5a551acba5469b5296ef16e61d9e38fa81a4.zip
debootstrap-bb4b5a551acba5469b5296ef16e61d9e38fa81a4.tar.gz
debootstrap-bb4b5a551acba5469b5296ef16e61d9e38fa81a4.tar.bz2
Improve text of error message when decompression command is not available.
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index 113b060..48699cf 100644
--- a/functions
+++ b/functions
@@ -793,7 +793,7 @@ extract_ar_deb_data () {
if type $cat_cmd >/dev/null 2>&1; then
ar -p "$pkg" "$tarball" | $cat_cmd | tar -xf -
else
- error 1 UNPACKCMDUNVL "The $cat_cmd is not available on the system"
+ error 1 UNPACKCMDUNVL "The $cat_cmd command is not available on the system"
fi
}