Merge pull request #194 from rasa/rasa/remove-quotes-from-distro

pull/229/head
Tim Byrne 4 years ago
commit 4546636336
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12

@ -1300,6 +1300,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