mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-30 09:45:57 +00:00
15 lines
294 B
Bash
Executable file
15 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# bail on errors
|
|
set -e
|
|
|
|
bin/rss.rb public
|
|
harp compile . www
|
|
|
|
for FILENAME in www/*.html www/posts/*.html www/projects/*.html; do
|
|
[[ "${FILENAME##*/}" = "index.html" ]] && continue
|
|
|
|
DIRNAME="${FILENAME%.html}"
|
|
mkdir -p "$DIRNAME"
|
|
mv "$FILENAME" "$DIRNAME/index.html"
|
|
done
|