mirror of
https://github.com/ovh/debian-cis.git
synced 2025-08-04 22:31:16 +02:00

- ensure correct formatting with shfmt - ensure correct syntax with shellcheck Co-authored-by: damien cavagnini <damien.cavagnini@corp.ovh.com>
8 lines
155 B
Bash
Executable File
8 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for script in "$@"; do
|
|
/usr/bin/shellcheck --exclude=SC2317 --color=always --shell=bash -x --source-path=SCRIPTDIR "$script"
|
|
done
|
|
|
|
exit 0
|