Skip to content

Commit 9730f4c

Browse files
committed
Use binary tag instead of cmt
1 parent 913c99d commit 9730f4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

run

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/bin/sh
22

3-
if [ -z "$CMTCONFIG" ] ; then
4-
echo "error: CMTCONFIG not defined"
3+
if [ -z "$BINARY_TAG" ] ; then
4+
echo "error: BINARY_TAG not defined - make sure your environment is set up."
55
exit 1
66
fi
77

8-
run_cmd=$(dirname $0)/build.$CMTCONFIG/run
8+
run_cmd=$(dirname $0)/build.$BINARY_TAG/run
99
if [ -e "$run_cmd" ] ; then
1010
exec $run_cmd "$@"
1111
else
12-
echo "error: cannot find build.$CMTCONFIG/run, did you build?"
12+
echo "error: cannot find build.$BINARY_TAG/run, did you build?"
1313
exit 1
1414
fi

0 commit comments

Comments
 (0)