aboutsummaryrefslogtreecommitdiff
path: root/src/static/update_hashes.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/static/update_hashes.sh')
-rwxr-xr-xsrc/static/update_hashes.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/static/update_hashes.sh b/src/static/update_hashes.sh
new file mode 100755
index 0000000..31f63bd
--- /dev/null
+++ b/src/static/update_hashes.sh
@@ -0,0 +1,5 @@
+#/bin/sh
+cd "$(dirname "$0")"
+for script in *.css *.js; do
+ shasum -a 256 < $script | cut -d' ' -f1 | xxd -r -p | base64 -w 0 > $script.sha256
+done