Skip to content

Commit

Permalink
"arm" is now "Arm" in architectures::get().
Browse files Browse the repository at this point in the history
  • Loading branch information
hexydec committed May 7, 2024
1 parent 390e274 commit aea9da7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/mappings/architectures.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ public static function get() : array {
'processor' => 'AMD'
]),
'armv7l' => new props('any', [
'architecture' => 'arm',
'architecture' => 'Arm',
'bits' => 32
]),
'aarch64' => new props('any', [
'architecture' => 'arm',
'architecture' => 'Arm',
'bits' => 64
]),
'arm64' => new props('any', [
'architecture' => 'arm',
'architecture' => 'Arm',
'bits' => 64
]),
'arm_64' => new props('any', [
'architecture' => 'arm',
'architecture' => 'Arm',
'bits' => 64
]),
'arm' => new props('any', [
'architecture' => 'arm',
'architecture' => 'Arm',
'bits' => 32
]),
'Intel' => new props('start', [
Expand Down

0 comments on commit aea9da7

Please sign in to comment.