File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,7 @@ RUN /install/trivy.sh
8585# Checking binaries versions and write it to debug file
8686
8787# SC3037 - We do not use `echo` flags here, so it's false-positive
88- # DL4006 - Not Applicable for for /bin/sh in alpine images. Disable, as recommended by check itself
89- # hadolint ignore=SC3037,DL4006
88+ # hadolint ignore=SC3037
9089RUN . /.env && \
9190 F=tools_versions_info && \
9291 pre-commit --version >> $F && \
@@ -104,7 +103,7 @@ RUN . /.env && \
104103 (if [ "$TFSEC_VERSION" != "false" ]; then echo "tfsec $(./tfsec --version)" >> $F; else echo "tfsec SKIPPED" >> $F ; fi) && \
105104 (if [ "$TFUPDATE_VERSION" != "false" ]; then echo "tfupdate $(./tfupdate --version)" >> $F; else echo "tfupdate SKIPPED" >> $F ; fi) && \
106105 (if [ "$TRIVY_VERSION" != "false" ]; then echo "trivy $(./trivy --version)" >> $F; else echo "trivy SKIPPED" >> $F ; fi) && \
107- echo -e "\n\n " && cat $F && echo -e " \n\n "
106+ printf "\n\n\n " && cat $F && printf " \n \n\n "
108107
109108
110109
You can’t perform that action at this time.
0 commit comments