mis-typed var names in build script oops
This commit is contained in:
parent
856f1c8dbd
commit
356cb7f8e9
8
build.sh
8
build.sh
@ -2,9 +2,9 @@
|
|||||||
# First scaffold
|
# First scaffold
|
||||||
gensite -s
|
gensite -s
|
||||||
# Second root pages/resources
|
# Second root pages/resources
|
||||||
for f in pages/*.md; do gensite -r $f;done
|
for f in pages/*.md; do echo $f && gensite -r $f;done
|
||||||
for f in root/*; do gensite -R $f ;done
|
for f in root/*; do echo $f && gensite -R $f ;done
|
||||||
# Third the posts
|
# Third the posts
|
||||||
for post in posts/*.md; do gensite -p $f;done
|
for post in posts/*.md; do echo $post && gensite -p $post;done
|
||||||
# Finally the notes
|
# Finally the notes
|
||||||
for note in notes/*.md; do gensite -P $f;done
|
for note in notes/*.md; do echo $note && gensite -P $note;done
|
||||||
|
Loading…
Reference in New Issue
Block a user