Move dmd files into compiler/

This commit is contained in:
Iain Buclaw 2022-07-09 18:53:07 +02:00
parent 20bd0cacbd
commit 6374bb87b7
4579 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,22 @@
#!/usr/bin/env bash
# A wrapper for all postscript files which sets `-euo pipefail`
set -euo pipefail
script_file="$1"
shift
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
# export common variables
source "$DIR/exported_vars.sh"
# Remove TEST_DIR and TEST_NAME
shift
shift
# called scripts should fail on errors and undefined variables
set -euo pipefail
set -x
source "${script_file}"