Skip to content

Commit

Permalink
Use . instead of source
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Sep 12, 2022
1 parent 20e29dc commit 38d2a75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ jobs:
shell: bash
run: |
# Don't try to cover everything, just what's in CI
source /etc/os-release
. /etc/os-release
[ "$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
run: . venv/bin/activate && ./setup.sh -i -u
- name: Test angr import
run: python -c "import angr; print('angr imports!')"

0 comments on commit 38d2a75

Please sign in to comment.