Skip to content

Commit

Permalink
strand-cam,braid-run: fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Dec 12, 2023
1 parent 02d20fa commit 15db71a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion braid/braid-run/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
if !frontend_pkg_dir.join("braid_frontend.js").exists() {
return Err(format!(
"The frontend is required but not built. Hint: go to {} and \
run `wasm-pack build --target web`.",
run `build.sh` (or on Windows, `build.bat`).",
frontend_dir.display()
)
.into());
Expand Down
2 changes: 1 addition & 1 deletion strand-cam/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fn main() -> Result<(), Box<(dyn std::error::Error)>> {
if !frontend_pkg_dir.join("strand_cam_frontend_yew.js").exists() {
return Err(format!(
"The frontend is required but not built. Hint: go to {} and \
run `wasm-pack build --target web`.",
run `build.sh` (or on Windows, `build.bat`).",
frontend_dir.display()
)
.into());
Expand Down

0 comments on commit 15db71a

Please sign in to comment.