Fix for those distros who, for whatever reason, decide to store ~/.cache in RAM...
This commit is contained in:
parent
dabfac59b0
commit
e40c3ce569
@ -501,18 +501,20 @@ winetricks() {
|
|||||||
echo "1" > "${XDG_CACHE_HOME:-$HOME/.cache}/winetricks/track_usage"
|
echo "1" > "${XDG_CACHE_HOME:-$HOME/.cache}/winetricks/track_usage"
|
||||||
fi
|
fi
|
||||||
# Download or update agm's copy of winetricks
|
# Download or update agm's copy of winetricks
|
||||||
if [[ ! -e "${cache}/winetricks" ]]; then
|
winetricksPath="${XDG_CONFIG_HOME:-$HOME/.config}/storm-games/audiogame-manager"
|
||||||
|
if [[ ! -e "${winetricksPath}/winetricks" ]]; then
|
||||||
checkWinetricksUpdate="true"
|
checkWinetricksUpdate="true"
|
||||||
download "https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks"
|
download "https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks"
|
||||||
chmod 700 "${cache}/winetricks"
|
mv "${cache}/winetricks" "${winetricksPath}"
|
||||||
|
chmod 755 "${winetricksPath}/winetricks"
|
||||||
else
|
else
|
||||||
if [[ "$checkWinetricksUpdate" != "true" ]]; then
|
if [[ "$checkWinetricksUpdate" != "true" ]]; then
|
||||||
checkWinetricksUpdate="true"
|
checkWinetricksUpdate="true"
|
||||||
${cache}/winetricks --self-update
|
${winetricksPath}/winetricks --self-update
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# Run the requested winetricks parameters
|
# Run the requested winetricks parameters
|
||||||
${cache}/winetricks "$@"
|
${winetricksPath}/winetricks "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
install_rhvoice() {
|
install_rhvoice() {
|
||||||
|
Loading…
Reference in New Issue
Block a user