aboutsummaryrefslogtreecommitdiff
path: root/tasks/common/functions.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-02-23 13:44:29 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-02-23 13:44:29 -0500
commita63ed0801a341499e20ff6e3ecc8b8b685b15c44 (patch)
treeb4440eafc83c919e5c6c0092008904eecf7694bc /tasks/common/functions.sh
parentafc5e98c29ed1d61d2c35cb6911c7b87cfce32f2 (diff)
downloadbashflows-a63ed0801a341499e20ff6e3ecc8b8b685b15c44.tar.gz
Initial commit
Diffstat (limited to 'tasks/common/functions.sh')
-rw-r--r--tasks/common/functions.sh15
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"
+}