summaryrefslogtreecommitdiff
path: root/build/stamp.sh
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-02-23 22:57:27 -0500
committerFreya Murphy <freya@freyacat.org>2026-02-23 22:57:27 -0500
commitf373ead95fb5beb962c376b5b7b46dfde8ac4e57 (patch)
treec99df23521ff2a5e5e2e4627c525a5e99dc2e3ae /build/stamp.sh
parentadd 96x96 logo (diff)
downloadwebsite-f373ead95fb5beb962c376b5b7b46dfde8ac4e57.tar.gz
website-f373ead95fb5beb962c376b5b7b46dfde8ac4e57.tar.bz2
website-f373ead95fb5beb962c376b5b7b46dfde8ac4e57.zip
update website to work with crimson framework
Diffstat (limited to 'build/stamp.sh')
-rwxr-xr-xbuild/stamp.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/build/stamp.sh b/build/stamp.sh
deleted file mode 100755
index 3b19b04..0000000
--- a/build/stamp.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-out="./src/web/stamp.php"
-public="./src/public"
-files=$(find "$public" -type f -printf %P\\n)
-
-printf "<?php\n\$__stamps = array();\n" > "$out"
-for file in $files; do
- stamp=$(date +%s -r "$public/$file")
- echo "\$__stamps['public/$file'] = $stamp;" >> "$out";
-done
-echo "define('FILE_TIMES', \$__stamps);" >> "$out"
-echo "unset(\$__stamps);" >> "$out"
-