aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-01-03 11:48:15 -0500
committerB. Stack <bgstack15@gmail.com>2023-01-03 11:48:15 -0500
commit5ebb2e8a138b7041ef15dc53dadad00aeea263d1 (patch)
treee4dd327a4a9afa5021f608dd2373bfd268ba6734
parentmake ctrl+enter press button save on dialog edit (diff)
downloadradicaleinfcloud-5ebb2e8a138b7041ef15dc53dadad00aeea263d1.tar.gz
radicaleinfcloud-5ebb2e8a138b7041ef15dc53dadad00aeea263d1.tar.bz2
radicaleinfcloud-5ebb2e8a138b7041ef15dc53dadad00aeea263d1.zip
make update-infcloud-cache use env MANIFEST
-rwxr-xr-xupdate-infcloud-cache2
1 files changed, 1 insertions, 1 deletions
diff --git a/update-infcloud-cache b/update-infcloud-cache
index 071ec77..162b8d1 100755
--- a/update-infcloud-cache
+++ b/update-infcloud-cache
@@ -4,7 +4,7 @@
# Use this script every time you modify any file to force browsers to reload it (empty HTML5 cache).
USE_BIN=none
-MANIFEST=/etc/infcloud/cache.manifest
+test -z "${MANIFEST}" && MANIFEST=/etc/infcloud/cache.manifest
test -e $( command -v ed 2>/dev/null ) && USE_BIN=ed
test -e $( command -v sed 2>/dev/null ) && USE_BIN=sed
command -v "${USE_BIN}" &> /dev/null || { echo "Error: 'ed' not installed. Aborting." > /dev/stderr; exit 1; }
bgstack15