You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert default command template values into ShellQuotedString format (#4433)
* Convert default command template values into ShellQuotedString format
* Cmd doesn't like escaped strings, so switch to strong quotes
* Handle build image command
* Remove some duplicated code
// This is not really ideal (putting the full command line into `command` instead of `command` + `args`), but parsing a string into a command + args like that is really hard
175
-
// Fortunately, `TaskCommandRunnerFactory` does not really care
// This is not really ideal (putting the full command line into `command` instead of `command` + `args`), but parsing a string into a command + args like that is really hard
180
+
// Fortunately, `TaskCommandRunnerFactory` does not really care
181
+
return{
182
+
command: resolvedCommand,
183
+
args: undefined,
184
+
};
185
+
}
186
+
187
+
// For the default command, we can make assumptions that allow us to parse into command + args for better shell support
0 commit comments