From 4cba2d1cf35b4115a50dbb7d2222e77c645909aa Mon Sep 17 00:00:00 2001 From: Codinget Date: Thu, 7 Feb 2019 23:55:37 +0100 Subject: [PATCH] Added Jar file builder --- .gitignore | 1 + makejar.sh | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100755 makejar.sh 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 +