mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
fix(cli): Typo in beforeBuildCommand error message (#4516)
This commit is contained in:
@@ -114,7 +114,7 @@ pub fn command(mut options: Options) -> Result<()> {
|
||||
|
||||
if !status.success() {
|
||||
bail!(
|
||||
"beforeDevCommand `{}` failed with exit code {}",
|
||||
"beforeBuildCommand `{}` failed with exit code {}",
|
||||
before_build,
|
||||
status.code().unwrap_or_default()
|
||||
);
|
||||
@@ -248,9 +248,9 @@ pub fn command(mut options: Options) -> Result<()> {
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
if config_.tauri.bundle.appimage.bundle_media_framework {
|
||||
std::env::set_var("APPIMAGE_BUNDLE_GSTREAMER", "1");
|
||||
if config_.tauri.bundle.appimage.bundle_media_framework {
|
||||
std::env::set_var("APPIMAGE_BUNDLE_GSTREAMER", "1");
|
||||
}
|
||||
}
|
||||
|
||||
let bundles = bundle_project(settings).with_context(|| "failed to bundle project")?;
|
||||
|
||||
Reference in New Issue
Block a user