File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
CodeQLToolkit.Features.Test/Commands
CodeQLToolkit.Shared/Utils Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
- 0.0.14
1
+ 0.0.15
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public override void Run()
49
49
codeql_standard_library = config . CodeQLStandardLibrary ,
50
50
codeql_cli_bundle = config . CodeQLCLIBundle ,
51
51
os = os ,
52
- codeql_standard_library_ident = $ "codeql-cli_v { config . CodeQLCLI } "
52
+ codeql_standard_library_ident = config . CodeQLStandardLibraryIdent
53
53
} ) ;
54
54
}
55
55
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ public void Register(Command parentCommand)
123
123
featureTarget . Language = language ;
124
124
featureTarget . RunnerOS = runnerOS ;
125
125
featureTarget . CLIVersion = config . CodeQLCLI ;
126
- featureTarget . STDLibIdent = config . CodeQLStandardLibrary ;
126
+ featureTarget . STDLibIdent = config . CodeQLStandardLibraryIdent ;
127
127
featureTarget . ExtraCodeQLArgs = extraArgs ;
128
128
129
129
featureTarget . Run ( ) ;
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ public class QLTConfig
13
13
public string CodeQLStandardLibrary { get ; set ; }
14
14
public string CodeQLCLIBundle { get ; set ; }
15
15
16
+ public string CodeQLStandardLibraryIdent {
17
+ get {
18
+ return CodeQLStandardLibrary . Replace ( "/" , "_" ) ;
19
+ }
20
+ }
21
+
16
22
17
23
[ JsonIgnore ]
18
24
public string Base { get ; set ; }
You can’t perform that action at this time.
0 commit comments