diff options
author | Colin Watson <cjwatson@debian.org> | 2011-07-16 19:19:23 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2011-07-16 19:19:23 +0100 |
commit | bb4b5a551acba5469b5296ef16e61d9e38fa81a4 (patch) | |
tree | 0869401f627a072aace4b3ad5540adeb7fdb8fd7 /functions | |
parent | 2db2d73de95d388fe968d591929c107df722b4fe (diff) | |
download | debootstrap-bb4b5a551acba5469b5296ef16e61d9e38fa81a4.tar.gz |
Improve text of error message when decompression command is not available.
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |