[scripts] fix path in gen_html/gen.sh

This commit is contained in:
Sławomir Nizio 2012-05-22 15:14:37 +02:00
parent a5b08b3dfb
commit 27d8d5f23d

View File

@ -37,7 +37,7 @@ fi
# main # main
if ! "$script" $common_args \ if ! "$script" $common_args \
main --template main.tmpl --dir "$main_dir" \ main --template "$script_dir/main.tmpl" --dir "$main_dir" \
> "$tmpfile"; then > "$tmpfile"; then
warn "script for main releases failed" warn "script for main releases failed"
rm -f "$tmpfile" rm -f "$tmpfile"
@ -52,7 +52,7 @@ fi
# dailies # dailies
if ! "$script" $common_args \ if ! "$script" $common_args \
daily --template daily.tmpl --dir "$dailies_dir" \ daily --template "$script_dir/daily.tmpl" --dir "$dailies_dir" \
> "$tmpfile"; then > "$tmpfile"; then
warn "script for daily releases failed" warn "script for daily releases failed"
rm -f "$tmpfile" rm -f "$tmpfile"