v0.0.3
All checks were successful
CI/CD / build-deploy (pull_request) Successful in 38s

This commit is contained in:
Timi
2026-03-21 18:00:03 +08:00
parent 1afc59dd12
commit 8c5abdb149
5 changed files with 97 additions and 114 deletions

View File

@@ -82,7 +82,8 @@ public class OS {
public static void run(String command) {
try {
Runtime.getRuntime().exec(new String[] {command});
} catch (Exception ignored) {
} catch (Exception e) {
throw new RuntimeException(e);
}
}