Add quotes to the ruby script location
Without this patch, if the ruby script is located in a path with spaces, it will not work.
This commit is contained in:
parent
f70881fbfd
commit
da59390ed2
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class concat::setup {
|
|||
$script_mode = $::osfamily ? { 'windows' => undef, default => '0755' }
|
||||
|
||||
$script_command = $::osfamily? {
|
||||
'windows' => "ruby.exe ${script_path}",
|
||||
'windows' => "ruby.exe '${script_path}'",
|
||||
default => $script_path
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue