Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Apr 30, 2024
1 parent c57662a commit 3ed233f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/buildDocker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ useEclipseOpenJ9DockerFiles()
cd "$dockerfileDir" || { echo "Dockerfile directory ($dockerfileDir) was not found"; exit 3; }
getFile https://raw.githubusercontent.com/eclipse-openj9/openj9/master/buildenv/docker/mkdocker.sh mkdocker.sh
MKDOCK_SHA="a09a00c2beb9c53985b4c3ed6fb62825d90808775941ab56417bef75a575be55"
local downloaded_sha=$(sha256sum mkdocker.sh | awk '{print $1}')
if [ "$downloaded_sha" != "$MKDOCK_SHA" ]; then
mkd_downloaded_sha=$(sha256sum mkdocker.sh | awk '{print $1}')
if [ "$mkd_downloaded_sha" != "$MKDOCK_SHA" ]; then
echo "ERROR: SHA256 checksum mismatch for mkdocker.sh"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion tooling/reproducible/linux_repro_build_compare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ installPrereqs() {
if [ ! -r /usr/local/bin/autoconf ]; then
curl --output ./autoconf-2.69.tar.gz https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
ACSHA256=954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969
ACCHKSHA=`sha256sum ./autoconf-2.69.tar.gz|cut -d" " -f1
ACCHKSHA=`sha256sum ./autoconf-2.69.tar.gz|cut -d" " -f1`
if [[ "$ACSHA256" == "$ACCHKSHA" ]]; then
echo "Hi"
cat ./autoconf-2.69.tar.gz | tar xpfz - || exit 1
Expand Down

0 comments on commit 3ed233f

Please sign in to comment.