blob: 7f6c85b9c4f734b3678589c68b23b1fe095a3de3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
[ -n "$DEBUG" ] && set -x
cd "$(dirname "$0")/.."
if ! command -v mise >/dev/null 2>&1; then
echo "Install mise: https://github.com/jdx/mise"
exit 1
fi
exec mise $@
|