Skip to content

Commit 072680b

Browse files
author
Denis Nikulin (Akvelon Inc)
committed
Small fix.
1 parent bcbe9d9 commit 072680b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tasks/PythonScriptV0/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { pythonScript } from './pythonscript';
55
(async () => {
66
#if NODE20
77
let error: any | undefined;
8-
#elseif ISSUESOURCEENABLED //Duplicatation since the build config also based on NODE 20 and the task generator doesn't support multiple parameters
8+
#elseif ISSUESOURCEENABLED
99
let error: any | undefined;
1010
#endif
1111
try {
@@ -24,7 +24,7 @@ import { pythonScript } from './pythonscript';
2424
#if NODE20
2525
error = e;
2626
task.setResult(task.TaskResult.Failed, error.message);
27-
#elseif ISSUESOURCEENABLED
27+
#elseif ISSUESOURCEENABLED
2828
error = e;
2929
task.setResult(task.TaskResult.Failed, error.message);
3030
#else

0 commit comments

Comments
 (0)