diff --git a/ext/base/src/main/java/io/xpipe/ext/base/identity/ssh/InPlaceKeyStrategy.java b/ext/base/src/main/java/io/xpipe/ext/base/identity/ssh/InPlaceKeyStrategy.java index 824a8754d..ac2a10589 100644 --- a/ext/base/src/main/java/io/xpipe/ext/base/identity/ssh/InPlaceKeyStrategy.java +++ b/ext/base/src/main/java/io/xpipe/ext/base/identity/ssh/InPlaceKeyStrategy.java @@ -96,11 +96,11 @@ public class InPlaceKeyStrategy implements SshIdentityStrategy { parent.view().touch(file); if (parent.getOsType() != OsType.WINDOWS) { - parent.command(CommandBuilder.of().add("chmod", "600").addFile(file)); + parent.command(CommandBuilder.of().add("chmod", "600").addFile(file)).execute(); } parent.view().writeTextFile(file, key.getSecretValue()); if (parent.getOsType() != OsType.WINDOWS) { - parent.command(CommandBuilder.of().add("chmod", "400").addFile(file)); + parent.command(CommandBuilder.of().add("chmod", "400").addFile(file)).execute(); } LocalFileTracker.deleteOnExit(file.asLocalPath()); diff --git a/version b/version index 397479795..4ace763ff 100644 --- a/version +++ b/version @@ -1 +1 @@ -19.0-26 +19.0-27