hotfix: add missing exit() call when failing to fetch network resource
This commit is contained in:
parent
5f109a0072
commit
23d8a1b1ce
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue