fix unquoted vars

This commit is contained in:
nuex 2011-10-06 17:52:34 -04:00
parent 47baacf52a
commit eb2b3e0660
2 changed files with 7 additions and 7 deletions

View File

@ -5,8 +5,8 @@
zod_lib=ZODLIB_PATH
proj=$1
target=$2
proj="$1"
target="$2"
_zod_error() {
echo -e ">>> ERROR: $*" >&2
@ -21,4 +21,4 @@ find "$proj" -type f \
! -name "*.layout" \
! -name "*.meta" \
! -name "helpers.awk" \
-exec zod_render $zod_lib $proj $target {} \;
-exec zod_render "$zod_lib" "$proj" "$target" {} \;

View File

@ -3,10 +3,10 @@
# render a zodiac page
# used internally by zod (uses file as single argument)
zod_lib=$1
proj=$2
target=$3
f=$4
zod_lib="$1"
proj="$2"
target="$3"
f="$4"
markdown_filter_cmd="awk -f $zod_lib/markdown.awk"