Remove quotes from distro name

pull/194/head
Ross Smith II 5 years ago
parent 96bce8dbac
commit 43ac19398a
No known key found for this signature in database
GPG Key ID: A05F962FB6A849D2

@ -1262,6 +1262,7 @@ function query_distro() {
while IFS='' read -r line || [ -n "$line" ]; do
if [[ "$line" = ID=* ]]; then
distro="${line#ID=}"
distro="${distro//\"}"
break
fi
done < "$OS_RELEASE"

Loading…
Cancel
Save