aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2022-11-11 05:50:53 -0500
committerThedro Neely <thedroneely@gmail.com>2022-11-11 05:50:53 -0500
commitabdbac031912a395c7524ad0e6f5c70c918531b2 (patch)
treea84ad67c6c671c04cda3a155159cbf99b0dc54d0 /bootstrap/helpers
parent986f4ca2a835a22e6d9faa95e5d33d907de6281e (diff)
downloadthedroneely.com-abdbac031912a395c7524ad0e6f5c70c918531b2.tar.gz
thedroneely.com-abdbac031912a395c7524ad0e6f5c70c918531b2.tar.bz2
thedroneely.com-abdbac031912a395c7524ad0e6f5c70c918531b2.zip
app/storage/cache/.keep -> storage/cache/.keep
Diffstat (limited to 'bootstrap/helpers')
-rwxr-xr-xbootstrap/helpers/cache6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/helpers/cache b/bootstrap/helpers/cache
index 267b442..ac7c8d2 100755
--- a/bootstrap/helpers/cache
+++ b/bootstrap/helpers/cache
@@ -1,4 +1,4 @@
#!/bin/sh -eu
-cachedir=$(dirname "$(pwd)")/app/storage/cache;
-rm -r "${cachedir:?}/"* > /dev/null 2>&1 || { echo "Nothing to invalidate in ${cachedir:?}" && exit; };
-echo "Cache invalidated in ${cachedir:?}";
+cachedir=$(dirname "$(pwd)")/storage/cache
+rm --recursive "${cachedir:?}/"* >/dev/null 2>&1 || { printf "Nothing to invalidate in %s\n" "${cachedir:?}" && exit; }
+printf "Cache invalidated in %s\n" "${cachedir:?}"