1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

Remove quotes from distro name

This commit is contained in:
Ross Smith II
2019-12-06 20:38:37 -08:00
parent 96bce8dbac
commit 43ac19398a

1
yadm
View File

@@ -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"