Added Jar file builder

This commit is contained in:
2019-02-07 23:55:37 +01:00
parent b7fdfdf4b4
commit 4cba2d1cf3
2 changed files with 11 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
/bin/ /bin/
.classpath .classpath
.project .project
TotallyNotMalware.jar
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
cd bin
files=""
for i in "`find * | grep -v '/Test'`"; do
files="$files $i"
done
jar cvfe ../TotallyNotMalware.jar totallynotmalware.TotallyNotMalware $files