General: Remove stray echo

This commit is contained in:
Dylan Araps 2016-11-12 11:53:53 +11:00
parent cf60ea9c6f
commit ad23439d9d
1 changed files with 1 additions and 1 deletions

View File

@ -694,7 +694,7 @@ get_cpu() {
speed="$(< "${speed_dir}/cpuinfo_max_freq")"
speed="$((speed / 100000))"
echo "$speed"
else
speed="$(awk -F ': |\\.' '/cpu MHz/ {printf $2; exit}' /proc/cpuinfo)"
speed="$((speed / 100))"