diff options
author | Joey Hess <joey@kitenet.net> | 2011-10-08 17:09:28 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-10-08 17:09:45 -0400 |
commit | 2d8bf390ff21d826d192e5f246468329c9f7bb4c (patch) | |
tree | f5058b8219b0f356552ccd99f581f4915e579c89 /functions | |
parent | 3a3afbb72893f3c8161dd72ff4663cc9ec80e443 (diff) | |
download | debootstrap-2d8bf390ff21d826d192e5f246468329c9f7bb4c.tar.gz |
Improve error message when a decompressor is not available, to indicate which package has been built with bzip today. Closes: #644719
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -818,7 +818,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 command is not available on the system" + error 1 UNPACKCMDUNVL "Extracting %s requires the %s command, which is not available" "$pkg" "$cat_cmd" fi } |