From a63ed0801a341499e20ff6e3ecc8b8b685b15c44 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 23 Feb 2026 13:44:29 -0500 Subject: Initial commit --- tasks/common/functions.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tasks/common/functions.sh (limited to 'tasks/common/functions.sh') 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" +} -- cgit