From 0a7c04e93c0e860cb94cd0ff98834010f27ebc66 Mon Sep 17 00:00:00 2001 From: Scott Fryer <60462088+steelhead31@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:15:24 +0000 Subject: [PATCH] Fix WGET Output Switches And Typos in windows reproducible compare script. (#3694) * Fix small bugs in comparison. * Fix URLs For RAW * Fix case for WGET. --- tooling/reproducible/windows_repro_build_compare.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tooling/reproducible/windows_repro_build_compare.sh b/tooling/reproducible/windows_repro_build_compare.sh index 4841012d8..c24bbe992 100644 --- a/tooling/reproducible/windows_repro_build_compare.sh +++ b/tooling/reproducible/windows_repro_build_compare.sh @@ -681,9 +681,9 @@ Compare_JDK() { cp "$WORK_DIR/built_jdk.zip" "$WORK_DIR/compare" # Get The Current Versions Of The Reproducible Build Scripts - wget -o "$WORK_DIR/compare/repro_common.sh" "https://github.com/adoptium/temurin-build/blob/master/tooling/reproducible/repro_common.sh" - wget -o "$WORK_DIR/compare/repro_compare.sh" "https://github.com/adoptium/temurin-build/blob/master/tooling/reproducible/repro_compare" - wget -o "$WORK_DIR/compare/repro_process.sh" "https://github.com/adoptium/temurin-build/blob/master/tooling/reproducible/repro_process.sh" + wget -O "$WORK_DIR/compare/repro_common.sh" "https://raw.githubusercontent.com/adoptium/temurin-build/master/tooling/reproducible/repro_common.sh" + wget -O "$WORK_DIR/compare/repro_compare.sh" "https://raw.githubusercontent.com/adoptium/temurin-build/master/tooling/reproducible/repro_compare.sh" + wget -O "$WORK_DIR/compare/repro_process.sh" "https://raw.githubusercontent.com/adoptium/temurin-build/master/tooling/reproducible/repro_process.sh" # Set Permissions chmod +x "$WORK_DIR/compare/"*sh