Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'production/build-functions.shsource')
-rwxr-xr-xproduction/build-functions.shsource8
1 files changed, 4 insertions, 4 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 6e2176be7..3816107d3 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-# General purpose utilities related to git and similar,
+# General purpose utilities related to git and similar,
# to be sourced where needed
source ${SCRIPT_PATH}/bashUtilities.shsource
@@ -1217,7 +1217,7 @@ fn-write-property-init ()
# nothing really required for bash shsource, but we'll put in some niceties
echo "#!/usr/bin/env bash" > $BUILD_ENV_FILE
echo "# properties written for $BUILD_ID" >> $BUILD_ENV_FILE
- # PHP, suitable for direct "include": needs to start and end with <?php ...
+ # PHP, suitable for direct "include": needs to start and end with <?php ...
echo "<?php " > $BUILD_ENV_FILE_PHP
echo "// properties written for $BUILD_ID " >> $BUILD_ENV_FILE_PHP
# standard properties file: nothing special required
@@ -1233,10 +1233,10 @@ fn-write-property-close ()
if [[ $? != 0 ]]; then return 1; fi
# nothing really required for bash shsource, but we'll put in some niceties
echo "# finished properties for $BUILD_ID" >> $BUILD_ENV_FILE
- # PHP, suitable for direct "include": needs to start and end with <?php ...
+ # PHP, suitable for direct "include": needs to start and end with <?php ...
# Note: technically best not to use closing ?> for an 'include'
echo "// finished properties for $BUILD_ID " >> $BUILD_ENV_FILE_PHP
-
+
# standard properties file: nothing special required
echo "! finshed properties for $BUILD_ID" >> $BUILD_ENV_FILE_PROP

Back to the top