2024-02-16 11:53:21 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-05-25 18:13:18 +00:00
|
|
|
|
2023-05-25 19:00:38 +00:00
|
|
|
for cur in ./html/{*,*/*,*/*/*}; do
|
2024-02-10 17:15:32 +00:00
|
|
|
if [ -f "$cur" ] && [[ ! "$cur" == *.upload-checksum ]]; then
|
|
|
|
if [ -f "$cur.upload-checksum" ]; then
|
|
|
|
c=$(cat "$cur.upload-checksum" | sha256sum -c 2> /dev/null)
|
|
|
|
if [[ "$c" == *OK ]]; then
|
|
|
|
echo "$cur is up-to-date, skipping"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo $(sha256sum "$cur") > "$cur.upload-checksum"
|
2023-05-25 18:13:18 +00:00
|
|
|
d=$(dirname $(realpath --relative-to="./html" "$cur"))
|
|
|
|
if [[ "$d" == "." ]]; then
|
|
|
|
neocities upload $cur
|
|
|
|
else
|
|
|
|
neocities upload -d $(dirname $(realpath --relative-to="./html" "$cur")) $cur
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|