mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2025-01-10 09:09:00 -07:00
11 lines
154 B
Bash
Executable File
11 lines
154 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
set -euo pipefile
|
|
|
|
rc=0
|
|
for filename in $(find ./* -name '*.sh'); do
|
|
echo "Validating"
|
|
shellcheck "${filename}" || exit $?
|
|
done
|
|
|
|
exit $? |