diff --git a/.github/workflows/bash.yml b/.github/workflows/bash.yml index 02ec7a4..937a4ad 100644 --- a/.github/workflows/bash.yml +++ b/.github/workflows/bash.yml @@ -14,5 +14,7 @@ jobs: steps: - name: Installing dependencies.. run: if ! apt list --installed | grep -qP ".*shellcheck.*"; then apt install -y shellcheck; fi + - name: Trying to find my repository + run: find / -type d -name Zernit ; exit 1 - name: Linting.. - run: for file in $(git --no-pager diff --name-only origin/master | grep -o ".*\.bash") ;do shellcheck --external-sources --shell=bash "$file";done \ No newline at end of file + run: for file in $(git --no-pager diff --name-only origin/master | ggrep -o ".*\.bash"); do shellcheck --external-sources --shell=bash "$file";done \ No newline at end of file