mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-04-05 16:25:52 +03:00
feat: added formatting in telemetry disabling
This commit is contained in:
parent
40d0b8a399
commit
6600cd98c1
1 changed files with 2 additions and 2 deletions
|
@ -24,14 +24,14 @@ pub fn disable_telemetry(sender: ComponentSender<App>) {
|
||||||
Command::new("pkexec")
|
Command::new("pkexec")
|
||||||
.arg("bash")
|
.arg("bash")
|
||||||
.arg("-c")
|
.arg("-c")
|
||||||
.arg(telemetry)
|
.arg(format!("echo '' >> /etc/hosts ; {telemetry} ; echo '' >> /etc/hosts"))
|
||||||
.spawn()
|
.spawn()
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
Command::new("bash")
|
Command::new("bash")
|
||||||
.arg("-c")
|
.arg("-c")
|
||||||
.arg(telemetry)
|
.arg(format!("echo '' >> /etc/hosts ; {telemetry} ; echo '' >> /etc/hosts"))
|
||||||
.spawn()
|
.spawn()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue