Skip to content

Commit

Permalink
Merge pull request #823 from gugod/macos-archname
Browse files Browse the repository at this point in the history
`arch` needs to be derived from myarchname.
  • Loading branch information
gugod authored Oct 8, 2024
2 parents e99f91d + 0cd1203 commit 27c411f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/App/Perlbrew/Sys.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sub os {
}

sub arch {
(split(/-/, $Config{archname}, 2))[0]
(split(/-/, $Config{myarchname}, 2))[0]
}

1;

0 comments on commit 27c411f

Please sign in to comment.