aboutsummaryrefslogtreecommitdiff
path: root/tasks/hst/rt
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/hst/rt
parentafc5e98c29ed1d61d2c35cb6911c7b87cfce32f2 (diff)
downloadbashflows-a63ed0801a341499e20ff6e3ecc8b8b685b15c44.tar.gz
Initial commit
Diffstat (limited to 'tasks/hst/rt')
-rw-r--r--tasks/hst/rt/env.sh1
-rw-r--r--tasks/hst/rt/run.sh12
2 files changed, 13 insertions, 0 deletions
diff --git a/tasks/hst/rt/env.sh b/tasks/hst/rt/env.sh
new file mode 100644
index 0000000..6c01a23
--- /dev/null
+++ b/tasks/hst/rt/env.sh
@@ -0,0 +1 @@
+export SOURCED_ENV_FILE=1
diff --git a/tasks/hst/rt/run.sh b/tasks/hst/rt/run.sh
new file mode 100644
index 0000000..3be6b66
--- /dev/null
+++ b/tasks/hst/rt/run.sh
@@ -0,0 +1,12 @@
+pre() {
+ echo "I do things before running."
+}
+
+run() {
+ echo "I run things."
+ echo SOURCED_ENV_FILE=${SOURCED_ENV_FILE}
+}
+
+post() {
+ echo "I do things after running."
+}