diff --git a/meta/io.murano/Resources/RunCommand.template b/meta/io.murano/Resources/RunCommand.template index c62597ff..4fa15909 100644 --- a/meta/io.murano/Resources/RunCommand.template +++ b/meta/io.murano/Resources/RunCommand.template @@ -18,7 +18,7 @@ Parameters: command: $command Body: | - return runCommand("'{0}'".format(args.command)) + return runCommand("{0}".format(args.command)) Scripts: runCommand: diff --git a/meta/io.murano/Resources/scripts/runCommand.sh b/meta/io.murano/Resources/scripts/runCommand.sh index 2e07744b..73694b11 100644 --- a/meta/io.murano/Resources/scripts/runCommand.sh +++ b/meta/io.murano/Resources/scripts/runCommand.sh @@ -11,4 +11,4 @@ # License for the specific language governing permissions and limitations # under the License. -$1 \ No newline at end of file +eval ${*} \ No newline at end of file