mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 00:31:07 -05:00
fix it
This commit is contained in:
parent
2bec091dbb
commit
08c1113afc
2 changed files with 3 additions and 1 deletions
2
.github/linters/.hadolint.yml
vendored
2
.github/linters/.hadolint.yml
vendored
|
@ -6,3 +6,5 @@ ignored:
|
|||
- DL4001 # Ignore wget and curl in same file
|
||||
- DL4006 # ignore pipefail as we dont want to add layers
|
||||
- DL3018 # We do pin version in pipfile.lock
|
||||
- DL3003 # Ignore workdir so we dont add layers
|
||||
- SC2016 # ignore as its intepreted later
|
||||
|
|
|
@ -273,7 +273,7 @@ RUN CHECKSTYLE_LATEST=$(curl -s https://api.github.com/repos/checkstyle/checksty
|
|||
| grep browser_download_url \
|
||||
| grep ".jar" \
|
||||
| cut -d '"' -f 4) \
|
||||
&& curl --retry 5 --retry-delay 5 -sSL $CHECKSTYLE_LATEST \
|
||||
&& curl --retry 5 --retry-delay 5 -sSL "$CHECKSTYLE_LATEST" \
|
||||
--output /usr/bin/checkstyle
|
||||
|
||||
####################
|
||||
|
|
Loading…
Reference in a new issue