sbs

A Simple Blogging System.
git clone https://git.sr.ht/~jbauer/sbs
Log | Files | Refs | README | LICENSE

commit f7ef8e5efb64e5c039a15ccd4c3ca99dab20ce16
parent 051191be2adde32280ac8bec53d640d74441bdef
Author: Jake Bauer <jbauer@paritybit.ca>
Date:   Wed, 17 Aug 2022 22:43:33 -0400

Fix bug with output folder path when building entire site

Diffstat:
Msbs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sbs b/sbs @@ -199,7 +199,7 @@ case "$1" in mkdir -p /tmp/sbs/ # Allows simply running "sbs build" without path(s) if [ $# -eq 0 ]; then - build ./content/* + build content/* else build "$@" fi @@ -217,7 +217,7 @@ case "$1" in push ;; "version") - echo "v0.4.2" ; + echo "v0.4.3" ; ;; *) echo "Usage: sbs <command> [FILE ...]"