diff options
Diffstat (limited to 'scripts/common')
-rw-r--r-- | scripts/common | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/common b/scripts/common new file mode 100644 index 0000000..7514ea9 --- /dev/null +++ b/scripts/common @@ -0,0 +1,23 @@ +# vim: ft=sh +# Laminar guard +if [ -z "$WORKSPACE" ]; then + echo "This script can be run only from laminar build environment!" >&2 + exit 1 +fi + +# Subprocess inclusion guard +[ -z "$LAMINAR_COMMON" ] +export LAMINAR_COMMON=y + +# Job and template id +export JOBID="$(basename "$0" | sed 's/\.run$//')" +export TEMPLATEID="$(basename "$(readlink -f "$0")" | sed 's/\.run$//')" + +# Template workspace +export TWORKSPACE="$HOME/workspace/$TEMPLATEID" +if [ "$JOBID" = "$TEMPLATEID" ]; then + TWORKSPACE="$HOME/workspace/notemplate" +fi + +# Include utils +. utils |