[skip ci]: Update kpm module display logic, fix installed and uninstalled name display

This commit is contained in:
ShirkNeko
2025-04-25 14:00:18 +08:00
parent 34f216181f
commit e07f20bf29
8 changed files with 45 additions and 19 deletions

View File

@@ -19,7 +19,7 @@ public class UltraShellHelper {
}
public static boolean isPathExists(String path) {
return !runCmd("file " + path).contains("No such file or directory");
return runCmd("file " + path).contains("No such file or directory");
}
public static void CopyFileTo(String path, String target) {