1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00

feat(container-creation): allow escaped quotes in command field (#2419)

This commit is contained in:
Dmitriy Larionov 2018-11-08 01:53:19 +05:00 committed by Anthony Lapenna
parent 807c830db0
commit 55b50c2a49

View file

@ -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) {