Files

14 lines
176 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
img="${1:-}"
if [ -n "$img" ]; then
img="RUN=${img%.*}"
fi
2019-08-24 00:00:06 +00:00
shift
if [ $# -ge 1 ]; then
type="$1"
shift
else
type=run
fi
make RUN_ARGS="$*" "${type}" "${img}"