Skip to content

Commit

Permalink
Update windows manifest for cmd syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Abrahão <[email protected]>
  • Loading branch information
patrickpa committed Aug 22, 2024
1 parent cbeebad commit 2bb4f15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "DemoCheckerBundle",
"exec_type": "executable",
"module_type": "checker_bundle",
"exec_command": "cd \"$env:ASAM_QC_FRAMEWORK_WORKING_DIR\"; & \"..\\..\\bin\\DemoCheckerBundle.exe\" \"$env:ASAM_QC_FRAMEWORK_CONFIG_FILE\";"
"exec_command": "cd %ASAM_QC_FRAMEWORK_WORKING_DIR% && ..\\bin\\DemoCheckerBundle.exe %ASAM_QC_FRAMEWORK_CONFIG_FILE%"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "ResultPooling",
"exec_type": "executable",
"module_type": "result_pooling",
"exec_command": "cd \"$env:ASAM_QC_FRAMEWORK_WORKING_DIR\"; & \"..\\..\\bin\\ResultPooling.exe\" \"$env:ASAM_QC_FRAMEWORK_WORKING_DIR\" \"$env:ASAM_QC_FRAMEWORK_CONFIG_FILE\";"
"exec_command": "cd %ASAM_QC_FRAMEWORK_WORKING_DIR% && ..\\bin\\ResultPooling.exe %ASAM_QC_FRAMEWORK_WORKING_DIR% %ASAM_QC_FRAMEWORK_CONFIG_FILE%"
}
]
}
2 changes: 1 addition & 1 deletion runtime/tests/test_data/windows/text_report_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "TextReport",
"exec_type": "executable",
"module_type": "report_module",
"exec_command": "cd \"$env:ASAM_QC_FRAMEWORK_WORKING_DIR\"; & \"..\\..\\bin\\TextReport.exe\" \"$env:ASAM_QC_FRAMEWORK_CONFIG_FILE\""
"exec_command": "cd %ASAM_QC_FRAMEWORK_WORKING_DIR% && ..\\bin\\TextReport.exe %ASAM_QC_FRAMEWORK_CONFIG_FILE%"
}
]
}

0 comments on commit 2bb4f15

Please sign in to comment.