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
This commit is contained in:
markusariliu 2022-01-10 21:54:38 -08:00 committed by GitHub
parent f742782e4a
commit bb85568cbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,7 +41,7 @@ export function runScript(
// Check if this script is already running // Check if this script is already running
if (findRunningScript(scriptName, args, server) != null) { 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; return;
} }