Reformat gpu_shorthand

This commit is contained in:
Dylan 2016-01-24 23:38:50 +11:00
parent 7e42f0c5c3
commit 5885c3033e
1 changed files with 7 additions and 7 deletions

14
fetch
View File

@ -742,13 +742,13 @@ getgpu () {
esac
if [ "$gpu_shorthand" == "on" ]; then
gpu=${gpu/'Rev. '?}
gpu=${gpu/'AMD/ATI'/AMD}
gpu=${gpu/'Tahiti' }
gpu=${gpu/'PRO' }
gpu=${gpu/'OEM' }
gpu=${gpu/'Mars' }
gpu=${gpu/'Series'}
gpu=${gpu// 'Rev. '?}
gpu=${gpu//'AMD/ATI'/AMD}
gpu=${gpu// 'Tahiti'}
gpu=${gpu// 'PRO'}
gpu=${gpu// 'OEM'}
gpu=${gpu// 'Mars'}
gpu=${gpu// 'Series'}
gpu=${gpu/\/*}
fi
}