1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 00:22:40 +00:00

Fix lint scripts

This commit is contained in:
Michele Locati 2020-01-23 15:01:25 +01:00
parent b09dce66d4
commit 824b8b5ba3
No known key found for this signature in database
GPG key ID: 98B7CE2E7234E28B
2 changed files with 2 additions and 2 deletions

View file

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