diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-06-11 23:32:38 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-06-11 23:33:18 -0400 |
| commit | 4a7fb2c5cf7265c5ef6a78051c1bb73e7d3ef086 (patch) | |
| tree | ef946513cb46ec2fe6421306c02cec2094843e5b | |
| parent | ddef0916de13949e800a63fa3490a73e98996fa2 (diff) | |
Refer to the correct build command in `build.rs` errors when `npx vite build` fails.
This was missed in 4396c912771f136f7d397a67f247c81532520b85.
| -rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ fn main() -> Result<(), io::Error> { let status = Command::new("npx").args(["vite", "build"]).status()?; if !status.success() { return Err(io::Error::other(format!( - "'npm run build' exited with status {status:?}" + "'npx vite build' exited with status {status:?}" ))); } |
