Skip to content

Commit

Permalink
Fixed a problem with *nix stytems
Browse files Browse the repository at this point in the history
  • Loading branch information
LowLevelSubmarine committed Apr 1, 2021
1 parent 71cedcf commit ff8b040
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public boolean delete() {
}

public void verify() throws MalformedUpdateException {
if (!(this.localJAR.exists() && this.localJAR.canExecute())) throw new MalformedUpdateException();
if (!this.localJAR.exists()) throw new MalformedUpdateException();
}

void runJAR() throws IOException {
Expand Down

0 comments on commit ff8b040

Please sign in to comment.