From 5d0e989dabcd538d70cd5855ea93223052fcc0d3 Mon Sep 17 00:00:00 2001 From: crschnick Date: Sat, 15 Nov 2025 18:54:50 +0000 Subject: [PATCH] Small fixes [stage] --- .../io/xpipe/ext/base/identity/ssh/InPlaceKeyStrategy.java | 4 ++-- version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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