We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b2e4b commit f18cb2fCopy full SHA for f18cb2f
unison-src/builtin-tests/jit-tests.sh
@@ -1,4 +1,4 @@
1
-#!/bin/bash
+#!/usr/bin/env sh
2
set -ex
3
4
# the first arg is the path to the unison executable
@@ -8,9 +8,6 @@ if [ -z "$1" ]; then
8
exit 1
9
fi
10
11
-# call unison with all its args quoted
12
-ucm=("$@")
13
-
14
runtime_tests_version="@unison/runtime-tests/main"
15
echo $runtime_tests_version
16
@@ -27,4 +24,5 @@ runtime_tests_version="$runtime_tests_version" \
27
24
< unison-src/builtin-tests/jit-tests.tpl.md \
28
25
> unison-src/builtin-tests/jit-tests.md
29
26
30
-time "${ucm[@]}" transcript.fork -C $codebase -S $codebase unison-src/builtin-tests/jit-tests.md
+# call unison with all its args quoted
+time "$@" transcript.fork -C $codebase -S $codebase unison-src/builtin-tests/jit-tests.md
0 commit comments