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 3d16fbb commit af654e4
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -36,7 +36,7 @@ installPrereqs() {
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)
if [[ "$ACSHA256" = "$ACCHKSHA" ]]; then
if [ "$ACSHA256" = "$ACCHKSHA" ]; then
echo "Hi"
tar xpfz ./autoconf-2.69.tar.gz || exit 1
(cd autoconf-2.69 && ./configure --prefix=/usr/local && make install)
Expand Down

0 comments on commit af654e4

Please sign in to comment.