mirror of
https://github.com/ovh/debian-cis.git
synced 2025-07-31 12:36:34 +02:00

- ensure correct formatting with shfmt - ensure correct syntax with shellcheck Co-authored-by: damien cavagnini <damien.cavagnini@corp.ovh.com>
8 lines
80 B
Bash
Executable File
8 lines
80 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for script in "$@"; do
|
|
shfmt -l -i 4 -w "$script"
|
|
done
|
|
|
|
exit 0
|