Skip to content

Commit

Permalink
Fix dpkg version compare relation arg
Browse files Browse the repository at this point in the history
  • Loading branch information
pentatonicfunk committed Oct 19, 2024
1 parent 237b447 commit 3dc8769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provision/core/vvv/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function shyaml_setup() {

# Ubuntu 24 making it hard to install pip packages, throwing externally-managed-environment error
# https://stackoverflow.com/a/75722775
if dpkg --compare-versions "${OSVERSION_NUMBER[@]}" gte "24.04"
if dpkg --compare-versions "${OSVERSION_NUMBER[@]}" ge "24.04"
then
# to make it available globally this is the last workaround, hopefully it doesn't break the system
# TODO: try to find a better alternative way to install
Expand Down

0 comments on commit 3dc8769

Please sign in to comment.