diff --git a/.gitignore b/.gitignore index fa968c2..da56395 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /bin/ .classpath .project +TotallyNotMalware.jar diff --git a/makejar.sh b/makejar.sh new file mode 100755 index 0000000..a266f3b --- /dev/null +++ b/makejar.sh @@ -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 +