Fix quotes

This commit is contained in:
Jan Bader 2015-09-05 23:54:35 +02:00
parent 72fef94d58
commit 1c704f861f
2 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ install=
changelog=
source=(ynab4 "Setup.exe::http://www.youneedabudget.com/CDNOrigin/download/$pkgname/liveCaptive/Win/YNAB%204_${pkgver}_Setup.exe")
noextract=("Setup.exe")
md5sums=("764cd9a8cec68ebcad04427110045267"
md5sums=("75854469a4abb1132b93a80c2336d7c6"
"0a5df8a115193fe68c4fb5e1cae55326")
package() {

6
ynab4
View File

@ -5,10 +5,10 @@ export WINEARCH=win64 WINEPREFIX="$HOME/.ynab4/wine"
ynab_wine="${HOME}/.ynab4/wine"
mkdir -p "${ynab_wine}" || exit 1
ynab_path="${ynab_wine}/drive_c/Program Files (x86)/YNAB 4/YNAB 4.exe'
if [ ! -f "$ynab_path" ] ; then
ynab_path="${ynab_wine}/drive_c/Program Files (x86)/YNAB 4/YNAB 4.exe"
if [ ! -f "${ynab_path}" ] ; then
wine /usr/share/ynab4/Setup.exe || exit 1
winetricks corefonts || exit 1
fi
wine "$ynab_path"
wine "${ynab_path}"