Finalised version

This commit is contained in:
Atlas Cove 2023-12-06 15:37:08 +00:00
parent 8f117a417a
commit 3a82aaefde
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# render.sh: part of the tape-and-string framework. # render.sh: part of the tape-and-string framework.
#V:3.6-r2 #V:3.7r0
#B: Load #B: Load
enable -f /usr/lib/bash/csv csv enable -f /usr/lib/bash/csv csv
declare -A title declare -A title
@ -68,7 +68,7 @@ function all {
load_title load_title
dirs dirs
docs docs
sass sassfn
other other
} }
function info { function info {
@ -121,9 +121,8 @@ case $1 in
sitemap) ./sitemap.sh;; sitemap) ./sitemap.sh;;
vall) info; all;; vall) info; all;;
all) all;; all) all;;
clean) rm -rf out;; clean) inf "Removing out..."; rm -rf out;;
*) *)
inf "Removing out..."
err "Unknown value, $1." err "Unknown value, $1."
exit 1 exit 1
;; ;;