We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a783526 commit e123588Copy full SHA for e123588
redisinsight/api/src/modules/workbench/providers/workbench-commands.executor.ts
@@ -69,10 +69,12 @@ export class WorkbenchCommandsExecutor {
69
nodeOptions,
70
mode,
71
} = dto;
72
-
73
- const [command, ...commandArgs] = splitCliCommandLine(commandLine);
+ let command = commandLine;
74
75
try {
+ const [parsedCommand, ...commandArgs] = splitCliCommandLine(commandLine);
76
+ command = parsedCommand;
77
+
78
if (nodeOptions) {
79
result = [await this.sendCommandForSingleNode(
80
clientOptions,
0 commit comments