Skip to content

Commit 6a5c5b9

Browse files
committed
Don't echo command line arguments
1 parent 7a73efe commit 6a5c5b9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build/scripts/Commandline.fsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,13 @@ module Commandline =
7070

7171
let parse () =
7272
setEnvironVar "FAKEBUILD" "1"
73-
printfn "%A" arguments
7473
match arguments with
75-
| [] | ["build"] | ["test"] | ["clean"] | ["benchmark"] | ["profile"] -> ignore()
74+
| []
75+
| ["build"]
76+
| ["test"]
77+
| ["clean"]
78+
| ["benchmark"]
79+
| ["profile"] -> ignore()
7680
| ["release"; version] -> setBuildParam "version" version
7781

7882
| ["test"; testFilter] -> setBuildParam "testfilter" testFilter

0 commit comments

Comments
 (0)