6 lines
148 B
Bash
Executable file
6 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
contextRoot="$(mktemp -d)";
|
|
pushd "$contextRoot" > /dev/null;
|
|
. "${BASH_SOURCE%/*}/config.sh";
|
|
popd > /dev/null;
|
|
rm -rf "$contextRoot";
|