File tree Expand file tree Collapse file tree
CodeQLToolkit.Features.Test/Commands
CodeQLToolkit.Shared/Utils Expand file tree Collapse file tree 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()
4949 codeql_standard_library = config . CodeQLStandardLibrary ,
5050 codeql_cli_bundle = config . CodeQLCLIBundle ,
5151 os = os ,
52- codeql_standard_library_ident = $ "codeql-cli_v { config . CodeQLCLI } "
52+ codeql_standard_library_ident = config . CodeQLStandardLibraryIdent
5353 } ) ;
5454 }
5555
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ public void Register(Command parentCommand)
123123 featureTarget . Language = language ;
124124 featureTarget . RunnerOS = runnerOS ;
125125 featureTarget . CLIVersion = config . CodeQLCLI ;
126- featureTarget . STDLibIdent = config . CodeQLStandardLibrary ;
126+ featureTarget . STDLibIdent = config . CodeQLStandardLibraryIdent ;
127127 featureTarget . ExtraCodeQLArgs = extraArgs ;
128128
129129 featureTarget . Run ( ) ;
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ public class QLTConfig
1313 public string CodeQLStandardLibrary { get ; set ; }
1414 public string CodeQLCLIBundle { get ; set ; }
1515
16+ public string CodeQLStandardLibraryIdent {
17+ get {
18+ return CodeQLStandardLibrary . Replace ( "/" , "_" ) ;
19+ }
20+ }
21+
1622
1723 [ JsonIgnore ]
1824 public string Base { get ; set ; }
You can’t perform that action at this time.
0 commit comments