Skip to content

Commit 4290a84

Browse files
committed
Cleaned up how we download stuff, we just download stuff to where they are needed.
Goal: Make it delete unused files in another update...
1 parent 77596e1 commit 4290a84

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jar {
8484
)
8585
}
8686
}
87+
8788
task runInstaler(type: JavaExec) {
8889
group = 'Installer Tasks'
8990
description = 'Runs the main class in the build/run directory'

src/main/java/org/mangorage/installer/Installer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static void main(String[] args) throws InterruptedException {
2525
LogUtil.println("Starting Installer in 30 seconds...");
2626
LogUtil.println("Arguments Supplied: " + Arrays.toString(args));
2727

28-
//Thread.sleep(30_000); // Sleep for 30 seconds
28+
Thread.sleep(30_000); // Sleep for 30 seconds
2929

3030
OptionParser parser = new OptionParser();
3131
parser.allowsUnrecognizedOptions();

0 commit comments

Comments
 (0)