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

Update perltidy to 20201202 #11602

Merged
merged 1 commit into from
Dec 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "requires 'Code::DRY';" >> cpanfile
echo "requires 'Date::Parse';" >> cpanfile
echo "requires 'Regexp::Common';" >> cpanfile
echo "requires 'Perl::Tidy', '== 20201001';" >> cpanfile
echo "requires 'Perl::Tidy', '== 20201202';" >> cpanfile
make prepare
- name: Run ${{ matrix.test }} tests
env:
Expand Down
4 changes: 2 additions & 2 deletions lib/ipmi_backend_utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ sub set_serial_console_on_vh {

#set up xen serial console
my $ipmi_console = get_dom0_serialdev("$root_dir");
if (${virt_type} eq "xen" || ${virt_type} eq "kvm") { setup_console_in_grub($ipmi_console, $root_dir, $virt_type); }
else { die "Host Hypervisor is not xen or kvm"; }
if (${virt_type} eq "xen" || ${virt_type} eq "kvm") { setup_console_in_grub($ipmi_console, $root_dir, $virt_type); }
else { die "Host Hypervisor is not xen or kvm"; }

#cleanup mount
if ($mount_point ne "") {
Expand Down