From f53e41cd115224d06aaa7d4d0c9d7a74dd40acb9 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Thu, 27 Jan 2022 02:04:22 -0500 Subject: [PATCH] try properly using string interpolation --- dist/steps/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index c8ae854..0f1c22e 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -61,7 +61,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then jq \ --arg packageName "$PACKAGE_NAME" \ --arg projectPath "$UNITY_PROJECT_PATH" \ - '.dependencies += {$packageName: ("file:$projectPath")} | . += {testables: [$packageName]}' \ + '.dependencies += {$packageName: "file:\($projectPath)"} | . += {testables: [$packageName]}' \ > "$PACKAGE_MANIFEST_PATH" cat "$PACKAGE_MANIFEST_PATH"