Skip to content

Commit

Permalink
Fix installer detect Debian version (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Jan 17, 2024
1 parent ae8047c commit 6436b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ _discover_distro_repo() {

case "$ID" in
debian)
if [[ -z "${VERSION_ID:+}" ]]; then
if [[ -z "${VERSION_ID:-}" ]]; then
VERSION_ID="Unstable"
elif [[ "$VERSION_ID" == "9" ]]; then
VERSION_ID="$VERSION_ID.0"
Expand Down

0 comments on commit 6436b9b

Please sign in to comment.