Merge pull request #417 from mlocati/shfmt

Always use shfmt 3.3.1, test all POSIX scripts
pull/419/head 1.2.54
Michele Locati 2021-08-12 18:00:57 +02:00 committed by GitHub
commit 61114671c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 44 additions and 34 deletions

View File

@ -3,28 +3,38 @@
set -o errexit set -o errexit
set -o nounset set -o nounset
PARAMS='-s -ln posix -i 0 -ci -kp' . ./scripts/common
# -s Simplify the code
# -ln posix Language variant: POSIX
# -i 0 Use TAB to indent
# -ci Switch cases will be indented
# -kp Keep column alignment paddings
DPEI_PARAMS='-s -ln posix -i 0 -ci -kp'
case "${1:-}" in case "${1:-}" in
check) check)
PARAMS="$PARAMS -d" DPEI_PARAMS="$DPEI_PARAMS -d"
;; ;;
fix) fix)
PARAMS="$PARAMS -w" DPEI_PARAMS="$DPEI_PARAMS -w"
;; ;;
*) *)
printf 'Syntax: %s <check|fix>' "$0" >&2 printf 'Syntax: %s <check|fix>\n' "$0" >&2
exit 1 exit 1
;; ;;
esac esac
shfmt $PARAMS \ DPEI_FILES=install-php-extensions
install-php-extensions \
scripts/ci-filter-supported-extensions \ IFS='
scripts/ci-retrieve-recent-extensions \ '
scripts/ci-test-extensions \ for DPEI_FILE in $(find scripts -type f); do
scripts/common \ if test "$(head -n1 $DPEI_FILE)" = '#!/bin/sh'; then
scripts/invoke-shfmt \ DPEI_FILES="$DPEI_FILES $DPEI_FILE"
scripts/lint \ fi
scripts/test-restore-apt \ done
scripts/update-readme
resetIFS
FORCE_COLOR=true shfmt $DPEI_PARAMS -- $DPEI_FILES

View File

@ -11,7 +11,7 @@ echo '# Linting shell scripts'
if ! docker --version >/dev/null 2>/dev/null; then if ! docker --version >/dev/null 2>/dev/null; then
echo 'Docker is not installed, or it is not running.' >&2 echo 'Docker is not installed, or it is not running.' >&2
rc=1 rc=1
elif ! docker run --rm -v "$SRC_DIR:/src" -w /src --entrypoint /src/scripts/invoke-shfmt mvdan/shfmt:v3.0.1 fix; then elif ! docker run --rm -v "$SRC_DIR:/src" -w /src --entrypoint /src/scripts/invoke-shfmt mvdan/shfmt:v3.3.1 fix; then
echo 'ERROR!' >&2 echo 'ERROR!' >&2
rc=1 rc=1
fi fi

View File

@ -16,7 +16,7 @@ if errorlevel 1 (
echo Docker is not installed, or it's not running >&2 echo Docker is not installed, or it's not running >&2
set rc=1 set rc=1
) else ( ) else (
docker run --rm -v "%SRC_DIR%:/src" -w /src --entrypoint /src/scripts/invoke-shfmt mvdan/shfmt:v3.0.1 fix docker run --rm -v "%SRC_DIR%:/src" -w /src --entrypoint /src/scripts/invoke-shfmt mvdan/shfmt:v3.3.1 fix
if errorlevel 1 ( if errorlevel 1 (
echo ERROR! >&2 echo ERROR! >&2
set rc=1 set rc=1