Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Sep 13, 2023
1 parent 475f5f8 commit 3ebc129
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ jobs:
- run: sudo chmod go-w /usr/local/bin
# ^^ we run as `runner` but this dir has 999 perms
- run: ./installer.sh
- run: test $(which tea) = /usr/local/bin/tea
- run: test "$(which tea)" = /usr/local/bin/tea

no-usr-local:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo rm -rf /usr/local # this is fine, right?
- run: sudo chmod 777 /usr # and this
- run: ./installer.sh --yes
- run: ./installer.sh
- run: test $(which tea) = /usr/local/bin/tea

no-dirs:
Expand All @@ -79,4 +79,4 @@ jobs:
- uses: actions/checkout@v3
- run: sudo mv ${{ matrix.dir }} .
- run: ./installer.sh
- run: pkgx duf --version
- run: tea duf --version

0 comments on commit 3ebc129

Please sign in to comment.