diff options
Diffstat (limited to '')
-rw-r--r-- | common/make.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/make.sh b/common/make.sh index c3b0912..f103167 100644 --- a/common/make.sh +++ b/common/make.sh @@ -1,9 +1,8 @@ #!/usr/bin/env bash set -euo pipefail -# Input environment: -# - NAME: a name for the script/tasks -# - TARGET: the Makefile target to run +NAME=$1 +TARGET=$2 WORKDIR="/tmp/${NAME}" |