Skip to content

Commit

Permalink
dxvk: use $W_TMP_EARLY rather than $W_TMP
Browse files Browse the repository at this point in the history
$W_TMP breaks under winetricks-test, since it is inside the prefix,
which contains '-', which w_download_to() balks at.
  • Loading branch information
austin987 committed Aug 16, 2018
1 parent ce8fc0a commit e862ffb
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 @@ -6798,8 +6798,8 @@ load_dxvk()
{
# https://github.com/doitsujin/dxvk
# There's no stable exe URL, but they do provide a RELEASE file that lets us build one:
w_download_to "$W_TMP" "https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE"
dxvk_version="$(cat "${W_TMP}/RELEASE")"
w_download_to "${W_TMP_EARLY}" "https://raw.githubusercontent.com/doitsujin/dxvk/master/RELEASE"
dxvk_version="$(cat "${W_TMP_EARLY}/RELEASE")"
w_linkcheck=1_ignore w_download "https://github.com/doitsujin/dxvk/releases/download/v${dxvk_version}/dxvk-${dxvk_version}.tar.gz"
helper_dxvk "dxvk-${dxvk_version}.tar.gz" "3.10" "1.0.76"
unset dxvk_version
Expand Down

0 comments on commit e862ffb

Please sign in to comment.