Skip to content

Commit

Permalink
Removed Variable References in 7zip URLs to Appease Shellcheck
Browse files Browse the repository at this point in the history
Replaced ${file1} variable references in the 7zip download URLs to appease shellcheck's error regarding this supposedly breaking compatibility with src/linkcheck.sh
  • Loading branch information
ThisNekoGuy authored Dec 17, 2024
1 parent 7bf60e9 commit 6eef521
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -15747,9 +15747,9 @@ fi
load_7zip()
{
if [ "${W_ARCH}" = "win32" ]; then
w_download "https://www.7-zip.org/a/${file1}" e35e4374100b52e697e002859aefdd5533bcbf4118e5d2210fae6de318947c41
w_download https://www.7-zip.org/a/7z2409.exe e35e4374100b52e697e002859aefdd5533bcbf4118e5d2210fae6de318947c41
elif [ "${W_ARCH}" = "win64" ]; then
w_download "https://www.7-zip.org/a/${file1}" bdd1a33de78618d16ee4ce148b849932c05d0015491c34887846d431d29f308e
w_download https://www.7-zip.org/a/7z2409-x64.exe bdd1a33de78618d16ee4ce148b849932c05d0015491c34887846d431d29f308e
fi
w_try_cd "${W_CACHE}/${W_PACKAGE}"
w_try "${WINE}" "${file1}" ${W_OPT_UNATTENDED:+/S}
Expand Down

0 comments on commit 6eef521

Please sign in to comment.