Skip to content

Commit

Permalink
fix release check
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Apr 5, 2024
1 parent 488d333 commit fdd9d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/build-or-download-cvmfs-debs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ distro=$(lsb_release -si | tr [:upper:] [:lower:])
release=$(lsb_release -sr)

# lsb_release -sr prints n/a for debian sid, replace it by 13
if [[ ${distro} = "debian" ]] && [[ ${release} = "n/a" ]]
if [ "${distro}" = "debian" ] && [ "${release}" = "n/a" ]
then
release=13
fi
Expand Down

0 comments on commit fdd9d2c

Please sign in to comment.