Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(config): allow setting product name and version on tauri.conf.json #1358

Merged
merged 7 commits into from
Mar 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: fmt
  • Loading branch information
lucasfernog committed Mar 18, 2021
commit 93ee58ebf3629ccd602b2f7c713b36161fd34c6c
5 changes: 1 addition & 4 deletions cli/core/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,7 @@ impl Build {
out_dir.join(format!("{}.exe", product_name)),
)?;
#[cfg(not(windows))]
rename(
out_dir.join(bin_name),
out_dir.join(product_name),
)?;
rename(out_dir.join(bin_name), out_dir.join(product_name))?;
}

if config_.tauri.bundle.active {
Expand Down