aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2022-02-01 12:39:56 +0100
committerMartin Ridgers <[email protected]>2022-02-01 12:39:56 +0100
commitcc02f632af7f13eaa4630152432dfee3196684d1 (patch)
treef1b373c792874730ea821ca3eae9b9c6fb589151 /scripts
parentPartial remote host validation for remote_build.py (diff)
downloadzen-cc02f632af7f13eaa4630152432dfee3196684d1.tar.xz
zen-cc02f632af7f13eaa4630152432dfee3196684d1.zip
Tweaked remote_build.py TTY output
Diffstat (limited to 'scripts')
-rw-r--r--scripts/remote_build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/remote_build.py b/scripts/remote_build.py
index 27e9f93de..c5787f635 100644
--- a/scripts/remote_build.py
+++ b/scripts/remote_build.py
@@ -93,8 +93,8 @@ def _local(args):
ssh_bin = find_git_tool(git_bin, "ssh")
scp_bin = find_git_tool(git_bin, "scp")
- print(f"Using ssh from '{ssh_bin.name}' from '{ssh_bin.parent}'")
- print(f"Using scp from '{scp_bin.name}' from '{scp_bin.parent}'")
+ print(f"Using '{ssh_bin.name}' from '{ssh_bin.parent}'")
+ print(f"Using '{scp_bin.name}' from '{scp_bin.parent}'")
# Find the Zen repository root
for parent in Path(__file__).resolve().parents: