hotfix: add missing exit() call when failing to fetch network resource

This commit is contained in:
dymik739 2023-04-13 22:16:11 +03:00
parent 5f109a0072
commit 23d8a1b1ce
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ public class Main {
}
} catch (Exception e) {
System.out.println("[ERROR] Failed to fetch resource " + output_filename + "from " + remote_url + " due to the following exception: " + e);
System.exit(1);
}
}