From 2f347e83e8c57dc979aa62b081cd1314723e9997 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Thu, 16 Feb 2023 07:57:36 -0500 Subject: [PATCH] fix linux 'can update'. upgrade aaxclean --- Source/AaxDecrypter/AaxDecrypter.csproj | 2 +- Source/AppScaffolding/AppScaffolding.csproj | 2 +- Source/DataLayer/DataLayer.csproj | 6 +++--- Source/LoadByOS/LinuxConfigApp/LinuxInterop.cs | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Source/AaxDecrypter/AaxDecrypter.csproj b/Source/AaxDecrypter/AaxDecrypter.csproj index c401391a..8b8bd394 100644 --- a/Source/AaxDecrypter/AaxDecrypter.csproj +++ b/Source/AaxDecrypter/AaxDecrypter.csproj @@ -13,7 +13,7 @@ - + diff --git a/Source/AppScaffolding/AppScaffolding.csproj b/Source/AppScaffolding/AppScaffolding.csproj index f3d7499b..7552b69a 100644 --- a/Source/AppScaffolding/AppScaffolding.csproj +++ b/Source/AppScaffolding/AppScaffolding.csproj @@ -2,7 +2,7 @@ net7.0 - 9.3.1.1 + 9.3.2.1 diff --git a/Source/DataLayer/DataLayer.csproj b/Source/DataLayer/DataLayer.csproj index 9f49643f..8bb043cb 100644 --- a/Source/DataLayer/DataLayer.csproj +++ b/Source/DataLayer/DataLayer.csproj @@ -12,12 +12,12 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Source/LoadByOS/LinuxConfigApp/LinuxInterop.cs b/Source/LoadByOS/LinuxConfigApp/LinuxInterop.cs index bf488806..7c36dda8 100644 --- a/Source/LoadByOS/LinuxConfigApp/LinuxInterop.cs +++ b/Source/LoadByOS/LinuxConfigApp/LinuxInterop.cs @@ -23,10 +23,10 @@ namespace LinuxConfigApp public void SetFolderIcon(string image, string directory) => throw new PlatformNotSupportedException(); public void DeleteFolderIcon(string directory) => throw new PlatformNotSupportedException(); - //only run the audo updater is the current app was installed from the - //.deb package. Try to detect this by checking if the symlink exists. - public bool CanUpdate => Directory.Exists("/usr/bin/libation"); - public void InstallUpdate(string updateBundle) + //only run the audo updater is the current app was installed from the + //.deb package. Try to detect this by checking if the symlink exists. + public bool CanUpdate => Directory.Exists("/usr/lib/libation"); + public void InstallUpdate(string updateBundle) { RunAsRoot("apt", $"install '{updateBundle}'"); }