mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 13:35:13 +00:00
wine: fix for updateScript
This commit is contained in:
parent
cf692195c5
commit
b0ec519e3d
@ -54,7 +54,7 @@ in rec {
|
|||||||
|
|
||||||
updateScript = writeShellScript "update-wine-stable" (''
|
updateScript = writeShellScript "update-wine-stable" (''
|
||||||
${updateScriptPreamble}
|
${updateScriptPreamble}
|
||||||
major=''${UPDATE_NIX_OLD_VERSION%.*}
|
major=''${UPDATE_NIX_OLD_VERSION%%.*}
|
||||||
latest_stable=$(get_latest_wine_version "$major.0")
|
latest_stable=$(get_latest_wine_version "$major.0")
|
||||||
latest_gecko=$(get_latest_lib_version wine-gecko)
|
latest_gecko=$(get_latest_lib_version wine-gecko)
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ in rec {
|
|||||||
|
|
||||||
updateScript = writeShellScript "update-wine-unstable" ''
|
updateScript = writeShellScript "update-wine-unstable" ''
|
||||||
${updateScriptPreamble}
|
${updateScriptPreamble}
|
||||||
major=''${UPDATE_NIX_OLD_VERSION%.*}
|
major=''${UPDATE_NIX_OLD_VERSION%%.*}
|
||||||
latest_unstable=$(get_latest_wine_version "$major.x")
|
latest_unstable=$(get_latest_wine_version "$major.x")
|
||||||
latest_mono=$(get_latest_lib_version wine-mono)
|
latest_mono=$(get_latest_lib_version wine-mono)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user