mirror of https://github.com/portainer/portainer
feat(container-creation): allow escaped quotes in command field (#2419)
parent
807c830db0
commit
55b50c2a49
|
@ -4,7 +4,7 @@ angular.module('portainer.docker')
|
|||
var helper = {};
|
||||
|
||||
helper.commandStringToArray = function(command) {
|
||||
return splitargs(command);
|
||||
return splitargs(command, undefined, true);
|
||||
};
|
||||
|
||||
helper.commandArrayToString = function(array) {
|
||||
|
|
Loading…
Reference in New Issue