Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new Business One installer #21257

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

emiura
Copy link
Contributor

@emiura emiura commented Feb 21, 2025

Adds necessary changes to support 2411 SAP Business One Installer.

Fixes:
TEAM-10112 (Update Business One Installer to 2411)

VR

[type description here, PLEASE, REMOVE THIS LINE, PLACEHOLDER, BEFORE SUBMITTING THIS PULL REQUEST]

Adds necessary changes to support 2411 SAP Business One Installer.

Fixes:
TEAM-10112 (Update Business One Installer to 2411)

VR
Copy link

Great PR! Please pay attention to the following items before merging:

Files matching lib/**.pm:

  • Consider adding or extending unit tests in t/

This is an automatically generated QA checklist based on modified files.

@@ -1040,8 +1040,8 @@ Package and upload HANA installation logs from SUT.
=cut

sub upload_hana_install_log {
my @hana_logs = qw(/var/adm/autoinstall/logs /var/tmp/hdb*);
push(@hana_logs, "/var/log/SAPBusinessOne/B1Installer*") if get_var('BONE');
my @hana_logs = qw("/var/adm/autoinstall/logs" "/var/tmp/hdb");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Double quotes are not necessary inside qw() (quote word); if used the elements will contain the quotes:

# perl
@l = qw("/var/adm/autoinstall/logs" "/var/tmp/hdb");
use Data::Dumper;
print Dumper \@l; 
$VAR1 = [
          '"/var/adm/autoinstall/logs"',
          '"/var/tmp/hdb"'
        ];

As the following line is not adding the quotes, I don't think the quotes are necessary in the definition with qw().

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants