Skip to content

Commit

Permalink
. e updated bash script to use PWD and variables
Browse files Browse the repository at this point in the history
Co-Authored-By: Llewellyn Falco <[email protected]>
  • Loading branch information
stagg54 and isidore committed Oct 13, 2023
1 parent 7f6e619 commit 97ac93b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

set -euo pipefail

CURRENT_DIRECTORY=$(cygpath -w $(pwd))
echo "CURRENT_DIRECTORY = $CURRENT_DIRECTORY"

g-cli vipc -- -v "20.0 (64-bit)" "Approvals Starter Project.vipc"
g-cli "C:\Program Files\National Instruments\LabVIEW 2020\vi.lib\addons\_JKI Toolkits\Caraya\CarayaCLIExecutionEngine.vi" -- -s "C:\Users\SAS\Documents\GitHub\ApprovalTests.LabVIEW.StarterProject" -x "C:\Users\SAS\Documents\GitHub\ApprovalTests.LabVIEW.StarterProject\UnitTestReport.xml"
CARAYA="C:\Program Files\National Instruments\LabVIEW 2020\vi.lib\addons\_JKI Toolkits\Caraya\CarayaCLIExecutionEngine.vi"
echo "CARAYA = $CARAYA"

g-cli vipc -- -v "20.0 (64-bit)" "$CURRENT_DIRECTORY\Approvals Starter Project.vipc"
g-cli "$CARAYA" -- -s "$CURRENT_DIRECTORY" -x "$CURRENT_DIRECTORY\UnitTestReport.xml"

0 comments on commit 97ac93b

Please sign in to comment.