Skip to content

Commit

Permalink
Remove a bashism in mksrcarc.sh, without which bob builds fail on
Browse files Browse the repository at this point in the history
Ubuntu (whose /bin/sh is not bash).

[originally from svn r9585]
  • Loading branch information
sgtatham committed Jul 22, 2012
1 parent 3d3052f commit acf8a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mksrcarc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ bintext=testdata/*.txt
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 -l putty-src.zip $bintext > /dev/null 2>&1
zip -k putty-src.zip $bin > /dev/null

0 comments on commit acf8a53

Please sign in to comment.