diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-11-22 08:37:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 08:37:33 -0600 |
commit | 8dbc00c56d8e2cc6618031d0c2a023d07a637cd3 (patch) | |
tree | ada5182417d8bd4628abb4231a99af1fbf83883c /movement | |
parent | 2455a922c6c62dcb94106cef7214cf3f28c3ce55 (diff) | |
parent | c5776781e0ed11ca9cfe3d72d5534d5209fcccac (diff) | |
download | Sensor-Watch-8dbc00c56d8e2cc6618031d0c2a023d07a637cd3.tar.gz Sensor-Watch-8dbc00c56d8e2cc6618031d0c2a023d07a637cd3.tar.bz2 Sensor-Watch-8dbc00c56d8e2cc6618031d0c2a023d07a637cd3.zip |
Merge pull request #118 from wryun/separate-emscripten-build-dir
Separate emscripten build directory
Diffstat (limited to 'movement')
-rwxr-xr-x | movement/make/make_alternate_fw.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/movement/make/make_alternate_fw.sh b/movement/make/make_alternate_fw.sh index 575c9e52..739c8557 100755 --- a/movement/make/make_alternate_fw.sh +++ b/movement/make/make_alternate_fw.sh @@ -28,9 +28,9 @@ do make clean emmake make FIRMWARE=$VARIANT mkdir "$sim_dir/$variant/" - mv "build/watch.wasm" "$sim_dir/$variant/" - mv "build/watch.js" "$sim_dir/$variant/" - mv "build/watch.html" "$sim_dir/$variant/index.html" + mv "build-sim/watch.wasm" "$sim_dir/$variant/" + mv "build-sim/watch.js" "$sim_dir/$variant/" + mv "build-sim/watch.html" "$sim_dir/$variant/index.html" done echo "Done." |