Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2022-10-30 04:21:13 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2022-10-30 04:21:13 +0300
commit3a7aef28e96c95e4682ed2272116d4518e75ec08 (patch)
tree69d6a8a9eb95fdad123a28904eec537449665678 /UVtools.WPF
parent6dc26f74342411760a5905860ef863ece03a3239 (diff)
Improve the scripts
Diffstat (limited to 'UVtools.WPF')
-rw-r--r--UVtools.WPF/Structures/AppVersionChecker.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UVtools.WPF/Structures/AppVersionChecker.cs b/UVtools.WPF/Structures/AppVersionChecker.cs
index d1ca6ec..0652759 100644
--- a/UVtools.WPF/Structures/AppVersionChecker.cs
+++ b/UVtools.WPF/Structures/AppVersionChecker.cs
@@ -223,7 +223,7 @@ public class AppVersionChecker : BindableBase
if (File.Exists(appImagePath)) File.Delete(appImagePath);
File.Move(DownloadedFile, newFullPath, true);
- SystemAware.StartProcess("chmod", $"a+x \"{newFullPath}\"", true);
+ SystemAware.StartProcess("chmod", $"775 \"{newFullPath}\"", true);
Thread.Sleep(500);
SystemAware.StartProcess(newFullPath);
}