Skip to content

Commit 7389008

Browse files
committed
Dont complain for unknown arguments as they may be handled by default task.
1 parent 1fa0c7b commit 7389008

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nake.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ else:
7676
of "tasks", "t":
7777
printTaskList = true
7878
else:
79-
echo "Unknown option: ", key, ": ", val
79+
discard
8080
of cmdArgument:
8181
task = key
8282
break

nake.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "1.9"
1+
version = "1.9.1"
22
author = "fowl"
33
description = "make-like for Nim. Describe your builds as tasks!"
44
license = "MIT"

0 commit comments

Comments
 (0)