Merge branch '9458-plugin-sybase-version-alternativa-al-actual' into 'develop'
changed single quotes to double quotes in the variable of the transfer_xml... See merge request artica/pandorafms!5136
This commit is contained in:
commit
99e0aa3e36
|
@ -869,11 +869,11 @@ sub transfer_xml {
|
|||
my $r = -1;
|
||||
#Send using tentacle
|
||||
if ($^O =~ /win/i) {
|
||||
$msg = `$conf->{tentacle_client} -v -a $conf->{tentacle_ip} -p $conf->{tentacle_port} $conf->{tentacle_opts} '$file_path'`;
|
||||
$msg = `$conf->{tentacle_client} -v -a $conf->{tentacle_ip} -p $conf->{tentacle_port} $conf->{tentacle_opts} "$file_path"`;
|
||||
$r = $?;
|
||||
}
|
||||
else {
|
||||
$msg = `$conf->{tentacle_client} -v -a $conf->{tentacle_ip} -p $conf->{tentacle_port} $conf->{tentacle_opts} '$file_path' 2>&1`;
|
||||
$msg = `$conf->{tentacle_client} -v -a $conf->{tentacle_ip} -p $conf->{tentacle_port} $conf->{tentacle_opts} "$file_path" 2>&1`;
|
||||
$r = $?;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue