Skip to content

Commit

Permalink
Fix check to identify Ubuntu 2004
Browse files Browse the repository at this point in the history
The check now uses the os_i variable and not the os module
  • Loading branch information
vladbogo committed Oct 25, 2023
1 parent f6ee3a0 commit 063c9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master-galera/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ for os_i in os_info:
factory = f_deb_build

env = {}
if os == "ubuntu-2004":
if os_i == "ubuntu-2004":
print("using gcc/++-10")
env = {"CC": "gcc-10", "CXX": "g++10"}

Expand Down

0 comments on commit 063c9db

Please sign in to comment.