File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3030 - id : shellcheck
3131 name : ☕️ Ensure Shell Scripts are good with ShellCheck
3232 files : .*\.sh$
33- args : [-x]
33+ args : [-x, -e, SC1017 ]
3434 - repo : https://github.com/pre-commit/mirrors-mypy
3535 rev : v1.15.0
3636 hooks :
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ pip install -q lastversion
2222
2323if [ " $( getconf LONG_BIT) " = " 64" ]; then
2424 echo " > Detected 64 bit system, using aarch64 compose image"
25- DOWNLOAD_URL=$( lastversion --assets --filter ' \-linux-aarch64(?!.sha256) ' docker/compose)
25+ DOWNLOAD_URL=$( lastversion --assets --filter ' \-linux-aarch64$ ' docker/compose)
2626else
2727 echo " > Detected 32 bit system, using armv7l compose image"
28- DOWNLOAD_URL=$( lastversion --assets --filter ' \-linux-armv7(?!.sha256) ' docker/compose)
28+ DOWNLOAD_URL=$( lastversion --assets --filter ' \-linux-armv7l$ ' docker/compose)
2929fi
3030curl -SL " $DOWNLOAD_URL " -o " $DOCKER_CONFIG /cli-plugins/docker-compose"
3131chmod +x " $DOCKER_CONFIG /cli-plugins/docker-compose"
You can’t perform that action at this time.
0 commit comments