This commit is contained in:
marc barbier
2021-07-07 23:42:20 +02:00
parent 7dfe4c2d3f
commit f83140ee0e
3 changed files with 9 additions and 4 deletions
+8 -3
View File
@@ -1,5 +1,10 @@
#!/bin/sh #!/bin/sh
mkdir -p objs
cd src
javac \ javac \
-d objs\ -d ../objs\
-cp libs/commons-compress-1.20.jar:libs/gson-2.8.7.jar:libs/gson-2.8.6.jar\ -cp ../lib/commons-compress-1.20.jar:../lib/gson-2.8.7.jar:../lib/gson-2.8.6.jar\
downloader/*.java downloader/forgeSvc/*.java downloader/*.java downloader/forgeSvc/*.java downloader/helper/*.java
cd ..
+1 -1
View File
@@ -3,7 +3,7 @@ if test -f "mcDownloader.jar"; then
fi fi
pwd pwd
LIBS=$( cd objs/ && ls ../libs/*.jar) LIBS=$( cd objs/ && ls ../lib/*.jar)
echo $LIBS echo $LIBS
cd objs cd objs