fix unquoted vars
This commit is contained in:
parent
47baacf52a
commit
eb2b3e0660
@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
zod_lib=ZODLIB_PATH
|
zod_lib=ZODLIB_PATH
|
||||||
|
|
||||||
proj=$1
|
proj="$1"
|
||||||
target=$2
|
target="$2"
|
||||||
|
|
||||||
_zod_error() {
|
_zod_error() {
|
||||||
echo -e ">>> ERROR: $*" >&2
|
echo -e ">>> ERROR: $*" >&2
|
||||||
@ -21,4 +21,4 @@ find "$proj" -type f \
|
|||||||
! -name "*.layout" \
|
! -name "*.layout" \
|
||||||
! -name "*.meta" \
|
! -name "*.meta" \
|
||||||
! -name "helpers.awk" \
|
! -name "helpers.awk" \
|
||||||
-exec zod_render $zod_lib $proj $target {} \;
|
-exec zod_render "$zod_lib" "$proj" "$target" {} \;
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
# render a zodiac page
|
# render a zodiac page
|
||||||
# used internally by zod (uses file as single argument)
|
# used internally by zod (uses file as single argument)
|
||||||
|
|
||||||
zod_lib=$1
|
zod_lib="$1"
|
||||||
proj=$2
|
proj="$2"
|
||||||
target=$3
|
target="$3"
|
||||||
f=$4
|
f="$4"
|
||||||
|
|
||||||
markdown_filter_cmd="awk -f $zod_lib/markdown.awk"
|
markdown_filter_cmd="awk -f $zod_lib/markdown.awk"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user