Skip to content

Commit 356c3d3

Browse files
correct error message
1 parent a6f9471 commit 356c3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/cryptomator/macos/update/DmgUpdateMechanism.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private UpdateStep verify(Path workDir, Path assetPath) throws IOException {
9292
LOG.debug("Verified app: {}", workDir.resolve("Cryptomator.app"));
9393
} catch (InterruptedException e) {
9494
Thread.currentThread().interrupt();
95-
throw new InterruptedIOException("Failed to extract DMG, interrupted");
95+
throw new InterruptedIOException("Code signature verification interrupted");
9696
}
9797
return UpdateStep.of(Localization.get().getString("org.cryptomator.macos.update.dmg.restarting"), () -> this.restart(workDir));
9898
}

0 commit comments

Comments
 (0)