Skip to content

Commit

Permalink
Merge pull request #109 from koplo199/master
Browse files Browse the repository at this point in the history
Use proton-exp-{version} instead of proton-{version}-exp naming scheme
  • Loading branch information
Kron4ek committed Aug 24, 2023
2 parents b22c923 + 85026d2 commit 24e328f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build_wine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,11 @@ elif [ "$WINE_BRANCH" = "proton" ]; then
fi

WINE_VERSION="$(cat wine/VERSION | tail -c +14)-$(git -C wine rev-parse --short HEAD)"
BUILD_NAME=proton-"${WINE_VERSION}"
if [[ "${PROTON_BRANCH}" == "experimental_"* ]]; then
BUILD_NAME=proton-exp-"${WINE_VERSION}"
else
BUILD_NAME=proton-"${WINE_VERSION}"
fi
else
if [ "${WINE_VERSION}" = "git" ]; then
git clone https://gitlab.winehq.org/wine/wine.git wine
Expand Down

0 comments on commit 24e328f

Please sign in to comment.