Skip to content

Commit 59bcddf

Browse files
author
Viktor Chernev
committed
minor bugfix
1 parent 25763e2 commit 59bcddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

@DescribeCompilerCLI/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static void parseFile(string[] args)
142142
}
143143
else if (cur.StartsWith("onerror=") && cur.Length > "onerror=".Length)
144144
{
145-
if (Arguments.readVerbosityArgument(cur, i) == false) return;
145+
if (Arguments.readOnerrorArgument(cur, i) == false) return;
146146
}
147147
else if (cur.StartsWith("artifacts=") && cur.Length > "artifacts=".Length)
148148
{
@@ -213,7 +213,7 @@ static void parseFolder(string[] args)
213213
}
214214
else if (cur.StartsWith("onerror=") && cur.Length > "onerror=".Length)
215215
{
216-
if (Arguments.readVerbosityArgument(cur, i) == false) return;
216+
if (Arguments.readOnerrorArgument(cur, i) == false) return;
217217
}
218218
else if (cur.StartsWith("artifacts=") && cur.Length > "artifacts=".Length)
219219
{

0 commit comments

Comments
 (0)