Skip to content

Commit 200591a

Browse files
committed
build: update build script
1 parent 8e51fcf commit 200591a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build/build.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Copyright (c) 2022-2023 Weihan Li. All rights reserved.
22
// Licensed under the Apache license version 2.0 http://www.apache.org/licenses/LICENSE-2.0
33

4-
var target = CommandLineParser.Val("target", args, "Default");
5-
var apiKey = CommandLineParser.Val("apiKey", args);
6-
var stable = CommandLineParser.BooleanVal("stable", args);
7-
var noPush = CommandLineParser.BooleanVal("noPush", args);
4+
var target = CommandLineParser.Val(args, "target", "Default");
5+
var apiKey = CommandLineParser.Val(args, "apiKey");
6+
var stable = CommandLineParser.BooleanVal(args, "stable");
7+
var noPush = CommandLineParser.BooleanVal(args, "noPush");
88
var branchName = EnvHelper.Val("BUILD_SOURCEBRANCHNAME", "local");
99

1010
var solutionPath = "./WeihanLi.Common.sln";

0 commit comments

Comments
 (0)