Skip to content

Commit

Permalink
Add conditional to Python 2 symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainThrowback authored Feb 24, 2024
1 parent 850858e commit b3078f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/Recovery Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,10 @@ jobs:
- name: Install Python 2
run: |
sudo apt -y install python2
cd /usr/bin
sudo ln -sf python2 python
if [ "${{ steps.vendorname.outputs.prefix }}" != "twrp" ]; then
cd /usr/bin
sudo ln -sf python2 python
fi
- name: Building recovery
run: |
Expand Down

0 comments on commit b3078f9

Please sign in to comment.