aboutsummaryrefslogtreecommitdiff
path: root/tasks/common/functions.sh
diff options
context:
space:
mode:
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"
+}