From 52f2e5245621ddefdd61dd8448ac110ed7aee619 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Thu, 16 Dec 2021 12:14:48 -0500 Subject: [PATCH] minor tweak to scp error message --- src/Terminal/commands/scp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/commands/scp.ts b/src/Terminal/commands/scp.ts index 4855bc152..f1561d6d4 100644 --- a/src/Terminal/commands/scp.ts +++ b/src/Terminal/commands/scp.ts @@ -14,7 +14,7 @@ export function scp( ): void { try { if (args.length !== 2) { - terminal.error("Incorrect usage of scp command. Usage: scp [file] [destination hostname/ip]"); + terminal.error("Incorrect usage of scp command. Usage: scp [file] [destination hostname]"); return; } const scriptname = terminal.getFilepath(args[0] + "");