mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-21 01:30:34 +00:00
Applying patch per #40
This commit is contained in:
parent
17f15daa92
commit
33492f949f
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user