Skip to content

Commit

Permalink
fix: rename kill-children.sh to tauri-stop-dev-processes.sh (#9669)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed May 7, 2024
1 parent a5205f1 commit d2fc48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/cli/src/dev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ pub fn kill_before_dev_process() {
{
use std::io::Write;
let mut kill_children_script_path = std::env::temp_dir();
kill_children_script_path.push("kill-children.sh");
kill_children_script_path.push("tauri-stop-dev-processes.sh");

if !kill_children_script_path.exists() {
if let Ok(mut file) = std::fs::File::create(&kill_children_script_path) {
Expand Down

0 comments on commit d2fc48f

Please sign in to comment.