Skip to content

Commit

Permalink
fix(deck): Ensure the detected branch name is always lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo authored Mar 4, 2024
1 parent a8e77d1 commit 26b1d53
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions system_files/deck/shared/usr/libexec/os-branch-select
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ if [[ $# -eq 1 ]]; then
branch=$(cut -d ":" -f4 <<< "$(rpm-ostree status | grep -m 1 'bazzite')")
fi

branch=${branch,,}
case "$branch" in
"latest" | "stable")
echo rel
Expand Down

0 comments on commit 26b1d53

Please sign in to comment.