We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc1a5b5 commit 658998dCopy full SHA for 658998d
src/main/wrapper/ExecutionService.ts
@@ -26,6 +26,7 @@ import CxAsca from "../asca/CxAsca";
26
27
let skipValue = false;
28
const fileSourceFlag = "--file-source"
29
+const scaResolverParamsFlag = "--sca-resolver-params"
30
31
function isJsonString(s: string) {
32
try {
@@ -53,7 +54,7 @@ function transform(n:string) {
53
54
return r;
55
}
56
// If the current string is "--file-source", set the flag
- if (n === fileSourceFlag) {
57
+ if (n === fileSourceFlag || n === "-s" || n === scaResolverParamsFlag) {
58
skipValue = true;
59
60
0 commit comments