Files
would-reformat/ci/shellcheck.sh
Michael Wolf 3034cd23e8 Fix
2023-09-30 15:32:00 -06:00

8 lines
115 B
Bash
Executable File

#!/bin/bash
files=$(find . -type f | grep -v '\.git' | grep '\.sh')
for i in $files; do
shellcheck "$i"
done