Skip to content

Commit

Permalink
change key name to cli_path
Browse files Browse the repository at this point in the history
  • Loading branch information
midays committed Apr 15, 2024
1 parent f72f587 commit 5269502
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config/ide_config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"timeout_in_seconds": 15.0,
"kantra_cli_path": "",
"cli_path": "",
"project_path": ""
}
2 changes: 1 addition & 1 deletion src/models/configuration/configurations_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def create(self, analysis_data, app_name, application_config, config, uuid):
# Build data for analysis configuration
options = Options.from_dict(application_data["options"])
options.input = [project_path]
options.cli = config["windup_cli_path"]
options.cli = config["cli_path"]
options.output = f"{application_config['plugin_cache_path']}/{uuid}"

configuration = Configuration(name=app_name, id=uuid, options=options)
Expand Down

0 comments on commit 5269502

Please sign in to comment.