Fix double space in linux cpu name

This commit is contained in:
Dylan 2016-01-30 14:37:50 +11:00
parent ed2afb0928
commit a40f4b644e
1 changed files with 1 additions and 1 deletions

2
fetch
View File

@ -713,7 +713,7 @@ getcpu () {
cpu="$(grep -F 'model name' /proc/cpuinfo)"
cpu=${cpu/model name*: }
cpu=${cpu%% *}
cpu=${cpu/@*}
cpu=${cpu/ @*}
# Get cpu speed
if [ -d "/sys/devices/system/cpu/cpu0/cpufreq" ]; then