mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-16 00:28:58 +00:00
small fix for empty classpath
This commit is contained in:
parent
16780d56e3
commit
5eb37f4dcb
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ for file in $(ls ../build/NurseBot_lib); do
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Building... "
|
echo "Building... "
|
||||||
javac -cp $CLASSPATH -d ../bin/ $(find ./ -iname "*.java")
|
javac -cp "$CLASSPATH" -d ../bin/ $(find ./ -iname "*.java")
|
||||||
if test ! $? = 0; then
|
if test ! $? = 0; then
|
||||||
echo "... failed"
|
echo "... failed"
|
||||||
exit $EXIT_COMPILE_FAILED
|
exit $EXIT_COMPILE_FAILED
|
||||||
|
|
Loading…
Reference in a new issue