diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/hardware.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/hardware.rb b/Library/Homebrew/hardware.rb index a49995a88..ec13814cc 100644 --- a/Library/Homebrew/hardware.rb +++ b/Library/Homebrew/hardware.rb @@ -8,19 +8,19 @@ class Hardware PPC_64BIT_ARCHS = [:ppc64].freeze def type - @type || :dunno + :dunno end def family - @family || :dunno + :dunno end def cores - @cores || 1 + 1 end def bits - @bits || 64 + 64 end def is_32_bit? |
