summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 1462155..e381ebe 100644
--- a/Rakefile
+++ b/Rakefile
@@ -20,7 +20,8 @@ task package: [:test, :doc] do
end
desc "Run the program"
-task run: [:package] do
+task :run do
+ sh "mvn package"
sh "java -cp target/assignment1*.jar ca.mokhan.comp268.App"
end