Applying patch per #40

This commit is contained in:
Rob Greene 2020-01-30 18:16:16 -06:00
parent 17f15daa92
commit 33492f949f
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,11 @@
#!/bin/bash
TMP=$(mktemp --directory)
TMP=$(mktemp -d)
if [ -z ${TMP} ]
then
echo "Problem creating TEMP directory; aborting!"
exit 1
fi
pushd build
for JAR in $(find . -name "*.jar" -a -not -name "*-sources.jar" -a -not -name "*-javadoc.jar")