]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - mksrcarc.sh
Make kh2reg.py compatible with modern Python.
[PuTTY.git] / mksrcarc.sh
index eb15407a8ee41ab0717b12834916dd0982495991..87327df7c8d97c8b6b47330126835bcf9d585816 100755 (executable)
@@ -1,4 +1,7 @@
 #!/bin/sh
+
+set -e
+
 perl mkfiles.pl
 # These are text files.
 text=`{ find . -name CVS -prune -o \
@@ -19,6 +22,12 @@ bintext=testdata/*.txt
 # These are actual binary files which we don't want transforming.
 bin=`{ ls -1 windows/*.ico windows/putty.iss windows/website.url macosx/*.icns; \
        find . -name '*.dsp' -print -o -name '*.dsw' -print; }`
-zip -k -l putty-src.zip $text > /dev/null
-zip -k -l putty-src.zip $bintext >& /dev/null
-zip -k putty-src.zip $bin > /dev/null
+
+verbosely() {
+    echo "$@"
+    "$@"
+}
+
+verbosely zip -l putty-src.zip $text
+verbosely zip -l putty-src.zip $bintext
+verbosely zip putty-src.zip $bin