Skip to content

Commit

Permalink
Fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Sep 12, 2022
1 parent 084be23 commit 20e29dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ jobs:
run: |
# Don't try to cover everything, just what's in CI
source /etc/os-release
[ "$ID" -eq "ubuntu" ] && apt update; apt install -y python3-venv
[ "$ID" -eq "arch" ] && pacman -Syu python
[ "$ID" -eq "fedora" ] && dnf install python3
[ "$ID" -eq "almalinux" ] && yum install python3
[ "$ID" = "ubuntu" ] && apt-get update; apt-get install -y python3-venv
[ "$ID" = "arch" ] && pacman -Syu python
[ "$ID" = "fedora" ] && dnf install python3
[ "$ID" = "almalinux" ] && yum install python3
python3 -m venv venv
- name: Run setup.sh
run: source venv/bin/activate && ./setup.sh -i -u
Expand Down

0 comments on commit 20e29dc

Please sign in to comment.