Skip to content

Commit

Permalink
Add check for permissions of chrome-sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Jun 12, 2024
1 parent 9ca1e11 commit fd82069
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-linux-installer-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,12 @@ jobs:
false
fi
- name: Check permissions of /opt/chia/chrome-sandbox
if: matrix.mode.name == 'GUI'
run: |
[ $(stat -c %a /opt/chia/chrome-sandbox) == "4755" ]
[ $(stat -c %G:%U /opt/chia/chrome-sandbox) == "root:root" ]
- name: Remove package
run: |
apt-get remove --yes ${{ matrix.mode.package }}
Expand Down

0 comments on commit fd82069

Please sign in to comment.