Fix stray forward slash in OS X GPU output.

This commit is contained in:
Dylan 2016-01-29 21:32:51 +11:00
parent 9dcfc7dec0
commit 07084eb657

2
fetch
View file

@ -873,7 +873,7 @@ getgpu () {
gpu=$( \ gpu=$( \
system_profiler SPDisplaysDataType | \ system_profiler SPDisplaysDataType | \
awk -F': ' '/^\ *Chipset Model:/ {printf $2}' | \ awk -F': ' '/^\ *Chipset Model:/ {printf $2}' | \
awk '{ printf "%s / ", $0 }' awk '{ printf "%s ", $0 }'
) )
gpu=${gpu//'/ $'} gpu=${gpu//'/ $'}
;; ;;