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

Use three args open #122

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

Use three args open #122

wants to merge 1 commit into from

Conversation

atoomic
Copy link
Contributor

@atoomic atoomic commented Nov 17, 2022

Fix #113

Prefer using three args open over the two args form.

view extended smoker run using changes from #121
at https://github.com/atoomic/log4perl/actions/runs/3492815436

Fix mschilli#113

Prefer using three args open over the two args
form.
Copy link
Collaborator

@mohawk2 mohawk2 left a comment

Choose a reason for hiding this comment

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

Thank you for this. Please fix the noted thing, and could you also rebase past your now-merged CI update?

@@ -10,7 +10,7 @@ die "usage: $0 version" unless $version =~ /^[\d.]+\w+$/;

system "git checkout gh-pages" and die $!;

open FILE, "<$IDX" or die "Cannot open $IDX";
open FILE, "<", "$IDX" or die "Cannot open $IDX";
Copy link
Collaborator

Choose a reason for hiding this comment

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

"$IDX" isn't right. Could you fix the various instances of this?

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.

Log::Log4perl::Appender::File is using two args open
2 participants