blob: 3be6b66e8a9791d3874ba516e55c691768378403 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
pre() {
echo "I do things before running."
}
run() {
echo "I run things."
echo SOURCED_ENV_FILE=${SOURCED_ENV_FILE}
}
post() {
echo "I do things after running."
}
|