diff options
Diffstat (limited to 'bin/pkgdiffex')
-rwxr-xr-x | bin/pkgdiffex | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/pkgdiffex b/bin/pkgdiffex index d2fea2b..9ff0585 100755 --- a/bin/pkgdiffex +++ b/bin/pkgdiffex @@ -3,7 +3,7 @@ # pkgdiffex -- diff files against existing patches if [ $# -eq 0 ]; then - echo "usage: ${0##*/} file [...]" 1>&2 + echo "usage: ${0##*/} file ..." 1>&2 exit 1 fi @@ -25,9 +25,7 @@ for o in "$@"; do cp "$o" "${o%.orig}" # f.orig +> f done -ls "$(whereispatch -i)"/patch-* | while read -r patch; do - pkgpatch <$patch -done +pkgpatchex for o in "$@"; do mv "${o%.orig}" "$o" # f -> f.orig |