Added Jar file builder
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
/bin/
|
/bin/
|
||||||
.classpath
|
.classpath
|
||||||
.project
|
.project
|
||||||
|
TotallyNotMalware.jar
|
||||||
|
|||||||
Executable
+10
@@ -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
|
||||||
|
|
||||||
Reference in New Issue
Block a user