diff options
| author | Simon Rettberg | 2013-03-19 14:28:04 +0100 |
|---|---|---|
| committer | Simon Rettberg | 2013-03-19 14:28:04 +0100 |
| commit | 88f406a26f460dee40e7e4c6da8659837ed1f1b9 (patch) | |
| tree | ffc080b0b1d0e018bbd7689938738aa46c294a3b | |
| parent | fix path for --help (diff) | |
| download | tm-scripts-88f406a26f460dee40e7e4c6da8659837ed1f1b9.tar.gz tm-scripts-88f406a26f460dee40e7e4c6da8659837ed1f1b9.tar.xz tm-scripts-88f406a26f460dee40e7e4c6da8659837ed1f1b9.zip | |
Fix warning message in list_package_files
| -rw-r--r-- | helper/fileutil.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/fileutil.inc b/helper/fileutil.inc index 4855e326..57f4ff13 100644 --- a/helper/fileutil.inc +++ b/helper/fileutil.inc @@ -45,7 +45,7 @@ list_packet_files() { #FILES=$(echo "$FILES" | sed 's/^\(.*\):###:[0-9]*$/\1/g') local LPRET=$(echo "$FILES" | awk -F ':###:' '{printf $2}') FILES=$(echo "$FILES" | awk -F ':###:' '{print $1}') - [ "x$LPRET" != "x0" ] && pwarning "list_packet_files exited with code '$LPRET' for packet ${PACKAGE}." + [ "x$LPRET" != "x0" ] && pwarning "dpkg/rpm exited with code '$LPRET' for packet ${PACKAGE}." [ -z "$FILES" ] && pwarning "list_packet_files empty for packet ${PACKAGE}." for FILE in $FILES; do [ ! -d "$FILE" ] && echo "$FILE" |
