blob: 8ae2108c19cc9b935e097fd71ea7740eac9a6bad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
get_common_dir() {
echo $(realpath $(dirname ${BASH_SOURCE[0]})/common)
}
pre() {
echo "pre not implemented"
}
post() {
echo "post not implemented"
}
run() {
echo "run not implemented"
}
|