diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-23 13:44:29 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-23 13:44:29 -0500 |
| commit | a63ed0801a341499e20ff6e3ecc8b8b685b15c44 (patch) | |
| tree | b4440eafc83c919e5c6c0092008904eecf7694bc /tasks/common | |
| parent | afc5e98c29ed1d61d2c35cb6911c7b87cfce32f2 (diff) | |
| download | bashflows-a63ed0801a341499e20ff6e3ecc8b8b685b15c44.tar.gz | |
Initial commit
Diffstat (limited to 'tasks/common')
| -rw-r--r-- | tasks/common/functions.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tasks/common/functions.sh b/tasks/common/functions.sh new file mode 100644 index 0000000..8ae2108 --- /dev/null +++ b/tasks/common/functions.sh @@ -0,0 +1,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" +} |
