Skip to content

Commit

Permalink
adjust unlock & mount success message
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Dec 2, 2024
1 parent 6f0425a commit 683c7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/cryptomator/cli/Unlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public Integer call() throws Exception {

try (var fs = CryptoFileSystemProvider.newFileSystem(pathToVault, fsPropsBuilder.build());
var mount = mountSetup.mount(fs)) {
System.out.println(mount.getMountpoint().uri());
LOG.info("Unlocked and mounted vault successfully to {}", mount.getMountpoint().uri());
Runtime.getRuntime().addShutdownHook(new Thread(() -> teardown(mount)));
Thread.currentThread().join();
}
Expand Down

0 comments on commit 683c7dd

Please sign in to comment.