summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJustin Davis <jrcd83@gmail.com>2012-06-15 02:06:02 +0200
committerJustin Davis <jrcd83@gmail.com>2012-06-15 02:06:02 +0200
commit12d8b95b387d64ddc51102f7704ae000b225dd4c (patch)
tree59cb6e41f0cde828054998e74ccf8c8b3d6c8bc9 /bin
parent691eebb9413b6978de5ad778932f8e3204eeb7fc (diff)
downloadgenpkg-12d8b95b387d64ddc51102f7704ae000b225dd4c.tar.gz
genpkg-12d8b95b387d64ddc51102f7704ae000b225dd4c.tar.xz
preps return 100 when they can't find matches.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/prepkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/prepkg b/bin/prepkg
index 2fa387a..9d95a46 100755
--- a/bin/prepkg
+++ b/bin/prepkg
@@ -39,10 +39,10 @@ do
prepret=$?
case "$prepret" in
+ 100) ;; # loop
0) basicmeta
exit 0 ;;
1) err "$flav encountered an error" ;;
- 2) ;; # loop
*) err "$flav returned error code $prepret" ;;
esac
done