PortValhalla/scripts/Common/Config/git/flow/install.sh

7 lines
148 B
Bash
Raw Normal View History

2023-04-02 01:46:29 +00:00
#!/bin/bash
2023-04-04 10:25:01 +00:00
contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
2023-06-22 18:44:40 +00:00
. "${BASH_SOURCE%/*}/config.sh";
2023-04-04 10:25:01 +00:00
popd > /dev/null;
rm -rf "$contextRoot";