This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new 3fd83c1 Check it's being run from the correct place
3fd83c1 is described below
commit 3fd83c17e116b84e8df0348189f7f2e333c0d0f4
Author: Sebb <[email protected]>
AuthorDate: Wed Nov 10 13:47:27 2021 +0000
Check it's being run from the correct place
---
webui/js/source/build.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/webui/js/source/build.sh b/webui/js/source/build.sh
old mode 100644
new mode 100755
index 4accb5b..e965a3a
--- a/webui/js/source/build.sh
+++ b/webui/js/source/build.sh
@@ -1,3 +1,7 @@
+#!/usr/bin/env bash
+
+test -r build.sh || { echo "Must be run from the directory containing
build.sh!"; exit 1; }
+
echo "Combining JS..."
echo '/*
Licensed to the Apache Software Foundation (ASF) under one or more