1
1
mirror of https://github.com/casey/just.git synced 2024-08-15 17:00:35 +03:00
just/contrib/just.sh
2024-01-24 20:03:42 +00:00

34 lines
645 B
Bash
Executable File

#!/usr/bin/env bash
# cd upwards to the justfile
while [[ ! -e justfile ]]; do
if [[ $PWD = / ]] || [[ $PWD = $JUSTSTOP ]] || [[ -e juststop ]]; then
echo 'No justfile found.'
exit 1
fi
cd ..
done
# prefer gmake if it exists
if command -v gmake > /dev/null; then
MAKE=gmake
else
MAKE=make
fi
declare -a RECIPES
for ARG in "$@"; do
test $ARG = '--' && shift && break
RECIPES+=($ARG) && shift
done
# export arguments after '--' so they can be used in recipes
I=0
for ARG in "$@"; do
export ARG$I=$ARG
I=$((I + 1))
done
# go!
exec $MAKE MAKEFLAGS='' --always-make --no-print-directory -f justfile ${RECIPES[*]}