From bb85568cbf18086bdb84053ec76e05962b6cff3d Mon Sep 17 00:00:00 2001 From: markusariliu <97362440+markusariliu@users.noreply.github.com> Date: Mon, 10 Jan 2022 21:54:38 -0800 Subject: [PATCH] clarify error The error message for running multiple instances of the same script with the same args should be updated to clarify that the args is the issue not just the multiple instances --- src/Terminal/commands/runScript.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/commands/runScript.ts b/src/Terminal/commands/runScript.ts index 21dacab9d..585b2e0f4 100644 --- a/src/Terminal/commands/runScript.ts +++ b/src/Terminal/commands/runScript.ts @@ -41,7 +41,7 @@ export function runScript( // Check if this script is already running if (findRunningScript(scriptName, args, server) != null) { - terminal.error("This script is already running. Cannot run multiple instances"); + terminal.error("This script is already running with the same args. Cannot run multiple instances with the same args"); return; }