Skip to content

Commit 5bd51c4

Browse files
authored
Merge pull request #70 from IShix-g/release
Release
2 parents c541be6 + 2f76449 commit 5bd51c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Editor/ArgumentsParser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ public static Dictionary<string, string> GetValidatedOptions()
1717
Dictionary<string, string> validatedOptions;
1818
ParseCommandLineArguments(out validatedOptions);
1919

20-
if (!validatedOptions.TryGetValue("buildsPath", out var buildsPath) || string.IsNullOrEmpty(buildsPath))
20+
if (!validatedOptions.TryGetValue("buildsPath", out var buildsPath))
2121
{
2222
PrintErrorLog("Please pass a buildsPath to with. buildsPath: build");
2323
}
2424

25-
if (!validatedOptions.TryGetValue("tag", out var tag) || string.IsNullOrEmpty(tag))
25+
if (!validatedOptions.TryGetValue("tag", out var tag))
2626
{
2727
PrintErrorLog("Please pass a tag to customParameters. customParameters: -tag 1.0.0");
2828
}

0 commit comments

Comments
 (0)