fix: rename kill-children.sh to tauri-stop-dev-processes.sh (#9669)

This commit is contained in:
Fabian-Lars 2024-05-07 15:45:37 +02:00 committed by GitHub
parent a5205f179e
commit d2fc48f0e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) {