From 1fe909f6c3b337fd9276585b18bfd77da721c263 Mon Sep 17 00:00:00 2001 From: Alejandro Huertas Herrero Date: Mon, 18 Mar 2019 14:21:46 +0100 Subject: [PATCH] Development: fix bug with quotes (#3091) --- src/oca/ruby/opennebula/marketplaceapp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oca/ruby/opennebula/marketplaceapp.rb b/src/oca/ruby/opennebula/marketplaceapp.rb index b41c7e9a5b..a67819a5a8 100644 --- a/src/oca/ruby/opennebula/marketplaceapp.rb +++ b/src/oca/ruby/opennebula/marketplaceapp.rb @@ -192,8 +192,8 @@ module OpenNebula options[:vmtemplate_name] = name unless options[:vmtemplate_name] tmpl << "\n" - tmpl << 'NAME=\"' << name << '\"\n' - tmpl << 'FROM_APP=\"' << self['ID'] << '\"\n' + tmpl << "NAME=\"" << name << "\"\n" + tmpl << "FROM_APP=\"" << self['ID'] << "\"\n" case type_str when 'IMAGE'