We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 913c99d commit 9730f4cCopy full SHA for 9730f4c
run
@@ -1,14 +1,14 @@
1
#!/bin/sh
2
3
-if [ -z "$CMTCONFIG" ] ; then
4
- echo "error: CMTCONFIG not defined"
+if [ -z "$BINARY_TAG" ] ; then
+ echo "error: BINARY_TAG not defined - make sure your environment is set up."
5
exit 1
6
fi
7
8
-run_cmd=$(dirname $0)/build.$CMTCONFIG/run
+run_cmd=$(dirname $0)/build.$BINARY_TAG/run
9
if [ -e "$run_cmd" ] ; then
10
exec $run_cmd "$@"
11
else
12
- echo "error: cannot find build.$CMTCONFIG/run, did you build?"
+ echo "error: cannot find build.$BINARY_TAG/run, did you build?"
13
14
0 commit comments