tools: Slightly improve output for shellfmt

This commit is contained in:
ColorfulRhino
2024-06-24 20:53:37 +02:00
committed by Igor
parent a46481c96a
commit 7f8576f378

View File

@@ -42,7 +42,7 @@ DOWN_URL="${GITHUB_SOURCE:-"https://github.com"}/mvdan/sh/releases/download/v${S
SHELLFMT_BIN="${DIR_SHELLFMT}/${SHELLFMT_FN}" SHELLFMT_BIN="${DIR_SHELLFMT}/${SHELLFMT_FN}"
echo "MACHINE: ${MACHINE}" echo "MACHINE: ${MACHINE}"
echo "Down URL: ${DOWN_URL}" echo "Download URL: ${DOWN_URL}"
echo "SHELLFMT_BIN: ${SHELLFMT_BIN}" echo "SHELLFMT_BIN: ${SHELLFMT_BIN}"
if [[ ! -f "${SHELLFMT_BIN}" ]]; then if [[ ! -f "${SHELLFMT_BIN}" ]]; then
@@ -73,3 +73,5 @@ echo "Shellfmt files differing:"
echo "Doing for real:" echo "Doing for real:"
"${SHELLFMT_BIN}" -w "${ALL_BASH_FILES[@]}" "${SHELLFMT_BIN}" -w "${ALL_BASH_FILES[@]}"
echo "Shellfmt finished!"