fixed a minor bug where the bot would exit immediately when deploying instead of waiting for the build to finish

milan
BodgeMaster 2022-02-20 08:53:04 +01:00
parent 4b075d63ed
commit 22e0139466
1 changed files with 69 additions and 66 deletions

View File

@ -15,7 +15,6 @@ public class Main{
CheckDeploy check = new CheckDeploy(7500, "/var/www/deployment/Hacky-Quizbot/id.txt");
check.start();
DiscordApi api = new DiscordApiBuilder().setToken(token).login().join();
// Add a listener which answers with "Pong!" if someone writes "!ping"
@ -40,29 +39,33 @@ public class Main{
this.filename = filename;
}
public String grabId() {
public String grabId() throws FileNotFoundException {
File file = new File(this.filename);
Scanner reader;
String id = new String();
try {
reader = new Scanner(file);
while (reader.hasNextLine()) {
id = reader.nextLine();
}
reader.close();
}catch (FileNotFoundException e) {
System.err.println("File not found");
}
return id;
}
public void run() {
this.id = this.grabId(); //replace with correct filename
try {
this.id = this.grabId();
} catch (FileNotFoundException e) {
System.err.println("Failed to grab ID on startup.");
System.exit(1);
}
while (true) {
String new_id = this.grabId();
String new_id = this.id;
try {
new_id = this.grabId();
} catch (FileNotFoundException e) {
System.err.println("Failed to check ID.");
}
if (!new_id.equals(this.id)) {
System.exit(0);
}