Skip to content
Snippets Groups Projects
Commit 5dabe559 authored by Martin Wölzer's avatar Martin Wölzer
Browse files

.ci/format/apply_shfmt.sh: introduced file

parent 33b902a5
No related branches found
No related tags found
1 merge request!24Create release v.0.6.0
#!/bin/bash
if [ -z "${SHFMT_BIN}" ]; then
SHFMT_BIN="shfmt"
fi
if ! command -v "${SHFMT_BIN}" >/dev/null 2>&1; then
echo "ERROR: Binary '${SHFMT_BIN}' does not exist, please set the environment variable SHFMT_BIN to the correct shfmt version."
exit 1
fi
format_command="${SHFMT_BIN} -w -i 4"
apply_format_script="$(dirname "${BASH_SOURCE[0]}")/apply_format.sh"
files_regex=".*\.sh$"
if ! "${apply_format_script}" --format-command "${format_command}" --files-regex "${files_regex}" "$@"; then
echo "ERROR: Executing '${apply_format_script}' failed."
exit 1
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment