summaryrefslogtreecommitdiff
path: root/templates/bash/template.sh
diff options
context:
space:
mode:
Diffstat (limited to 'templates/bash/template.sh')
-rw-r--r--templates/bash/template.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/bash/template.sh b/templates/bash/template.sh
index 89958d4..1da4f5b 100644
--- a/templates/bash/template.sh
+++ b/templates/bash/template.sh
@@ -5,7 +5,12 @@ set -eu -o pipefail
#############################################################################
# Functions that implement steps.
-{{ functions }}
+{% for func in functions %}
+#----------------------------------------------------------------------------
+# This code comes from: {{ func.source }}
+
+{{ func.code }}
+{% endfor %}
#############################################################################