Skip to content

Commit

Permalink
try to fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
remyhaemmerle-da committed Mar 28, 2023
1 parent a82b434 commit b2eaf60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions daml-script/test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,11 @@ sh_test(
name = "test_daml_script_test_runner",
srcs = [":daml-script-test-runner.sh"],
args = [
"$(location //daml-script/runner:daml-script-binary)",
"$(location :script-test.dar)",
"$(rootpath //daml-script/runner:daml-script-binary)",
"$(rootpath :script-test.dar)",
"$(POSIX_DIFF)",
"$(location @jq_dev_env//:jq)",
"$(location :canton)",
"$(rootpath :canton)",
],
data = [
":canton",
Expand Down
6 changes: 3 additions & 3 deletions daml-script/test/daml-script-test-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \

set -euo pipefail

test_runner=$1; shift
dar_file=$1; shift
test_runner=$(rlocation $TEST_WORKSPACE/$1); shift
dar_file=$(rlocation $TEST_WORKSPACE/$1); shift
diff=$1; shift
jq=$1; shift
canton_binary=$1; shift
canton_binary=$(rlocation $TEST_WORKSPACE/$1); shift

tmp_dir=$(mktemp -d)
canton_conf=${tmp_dir}/canton.conf
Expand Down

0 comments on commit b2eaf60

Please sign in to comment.