Skip to content

Commit

Permalink
fix yarn install command in build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemis21 committed Feb 2, 2024
1 parent a44efad commit 1d79218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn build_assets(dist: &std::path::Path) {
}
// Ensure parcel is installed
std::process::Command::new("yarn")
.args(["--immutable"])
.args(["install", "--immutable"])
.status()
.expect("failed to run `yarn install`");
// Build web assets
Expand Down

0 comments on commit 1d79218

Please sign in to comment.