Skip to content

Fix ghostty missing in work home #255

Fix ghostty missing in work home

Fix ghostty missing in work home #255

Workflow file for this run

name: shellcheck
on:
push:
workflow_dispatch:
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
sudo apt install shellcheck
scripts=$(find . -type f -perm /u=x,g=x,o=x | sed 's#^./.git/.*##' | grep .)
echo $scripts
shellcheck $scripts | tee shellcheck.log