aboutsummaryrefslogtreecommitdiff
path: root/local-tomo
diff options
context:
space:
mode:
Diffstat (limited to 'local-tomo')
-rwxr-xr-xlocal-tomo11
1 files changed, 3 insertions, 8 deletions
diff --git a/local-tomo b/local-tomo
index 74143604..d16e090e 100755
--- a/local-tomo
+++ b/local-tomo
@@ -1,11 +1,6 @@
#!/bin/sh
version=$(awk '/^## / {print $2; exit}' CHANGES.md)
-here="$(realpath "$(dirname "$0")")"
-if [ ! -e "$here/dist/$version/bin/tomo@$version" ]; then
- echo "Tomo hasn't been compiled yet! Run \`make\` to compile it!"
- exit 1;
+if ! [ -e ./build/$version/bin/tomo ]; then
+ make -j
fi
-
-PATH="$here/dist/$version/bin${PATH:+:$PATH}" \
-TOMO_PATH="$here/dist/$version" \
-tomo@"$version" "$@"
+exec ./build/$version/bin/tomo "$@"