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:
Alejandro Sánchez 2022-10-05 09:37:21 +00:00
commit 99e0aa3e36
1 changed files with 2 additions and 2 deletions

View File

@ -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 = $?;
}