1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-01 02:53:36 +02:00

Deal with exit status of subsheels in make_jar.sh

This commit is contained in:
Kris Maglione
2009-08-27 12:30:54 -04:00
parent e63ed7bc64
commit 30076394fb

View File

@@ -48,9 +48,10 @@ do
do do
[ -f "$f" ] && copytext "$f" "$stage/$f" [ -f "$f" ] && copytext "$f" "$stage/$f"
done done
) true
) || exit 1
done done
(cd $stage; zip -r "$top/$jar" *) (cd $stage; zip -r "$top/$jar" *) || exit 1
rm -rf "$stage" rm -rf "$stage"