Skip to content

Commit 48fa178

Browse files
Chris DonovanChris Donovan
authored andcommitted
fixed up or-equals
1 parent 77ec566 commit 48fa178

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

steps/003-modifiers

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ sub text_install {
480480
my $changed = 1;
481481

482482
# Create containing directory if it doesn't exist
483-
$p->{-mode} ||= $p->{-flags}{-mode} ||= 0644;
484-
$p->{-dir_mode} ||= $p->{-flags}{-dir_mode} ||= 0755;
483+
$p->{-mode} ||= $p->{-flags}{-mode} || 0644;
484+
$p->{-dir_mode} ||= $p->{-flags}{-dir_mode} || 0755;
485485
my $path = dirname($p->{-file});
486486
dir_check(-dir => $path, -mode => $p->{-dir_mode}) if $path and $path ne $p->{-file} and ! -d $path;
487487

0 commit comments

Comments
 (0)