From 4a7fb2c5cf7265c5ef6a78051c1bb73e7d3ef086 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 11 Jun 2025 23:32:38 -0400 Subject: Refer to the correct build command in `build.rs` errors when `npx vite build` fails. This was missed in 4396c912771f136f7d397a67f247c81532520b85. --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 94531ab..c986ca1 100644 --- a/build.rs +++ b/build.rs @@ -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:?}" ))); } -- cgit v1.2.3