summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 88141d4..4ec5219 100644
--- a/Rakefile
+++ b/Rakefile
@@ -27,6 +27,6 @@ task(doc: [:pdf]) { sh 'mvn javadoc:javadoc' }
task publish: [:clean, :test, :doc, :repackage]
task(:build) { sh "mvn package" }
task(run: :build) { run_cli }
-1.upto(4) { |n| task("run#{n}": :build) { run_cli(n) } }
+1.upto(10) { |n| task("run#{n}": :build) { run_cli(n) } }
task default: [:publish]