diff --git a/_build_html.sh b/_build_html.sh index a4f869d..cb125ea 100755 --- a/_build_html.sh +++ b/_build_html.sh @@ -3,4 +3,4 @@ source "_build_common.sh" echo 'Building HTML...' -php ./compile_html.php +php ./compile_html.php $@ diff --git a/_build_js.sh b/_build_js.sh index 7321e48..fea3428 100755 --- a/_build_js.sh +++ b/_build_js.sh @@ -3,7 +3,7 @@ source "_build_common.sh" mkdir -p out/js echo 'Generating lang.js...' -php ./dump_js_lang.php +php ./dump_js_lang.php $@ echo 'Processing JS...' npm run webpack diff --git a/build.sh b/build.sh index 75ac53f..4763975 100755 --- a/build.sh +++ b/build.sh @@ -7,8 +7,8 @@ source "_build_common.sh" rm -fr out/* ./_build_css.sh -./_build_js.sh -./_build_html.sh +./_build_js.sh $@ +./_build_html.sh $@ ./_build_assets.sh echo 'ESPTerm front-end ready'