aboutsummaryrefslogtreecommitdiffstats
path: root/bin/ssg
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ssg')
-rwxr-xr-xbin/ssg9
1 files changed, 6 insertions, 3 deletions
diff --git a/bin/ssg b/bin/ssg
index b96e01f..f70a3f9 100755
--- a/bin/ssg
+++ b/bin/ssg
@@ -10,7 +10,7 @@ OUT="out"
. ./bin/ssg-template
_log() {
- echo [${0}] $@
+ echo [${0}] "$@"
}
_to_html() {
@@ -46,6 +46,7 @@ _convert_urls() {
main() {
local file
+ local out_path
# template files
for template in header footer; do
@@ -56,7 +57,9 @@ main() {
# markdown files
for file in $(find "${SRC}" -iname "*.md"); do
- if [ "${file}" -ot $(_get_out_path "${file}") ]; then
+ out_path=$(_get_out_path "${file}")
+
+ if [ "${file}" -ot "${out_path}" ]; then
_log "! ${file}"
continue
fi
@@ -89,7 +92,7 @@ main() {
# Concatenate temporary files to final page
m4 templates/default.html > "${TMP_FILE}"
- install -D "${TMP_FILE}" $(_get_out_path "${file}")
+ install -D "${TMP_FILE}" "${out_path}"
done
# html files
remember that computers suck.