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 Jan 10, 2023
1 parent 353d21a commit 81a23e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/setup-sh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ 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!')"

Expand Down

0 comments on commit 81a23e8

Please sign in to comment.