diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-04 17:04:22 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-04 17:04:22 +0100 |
commit | e6d4a7e4dba7efda4ce06b8410ee31086b54c920 (patch) | |
tree | 0809af2cecb5338818edf0a952e4bec97b611beb /packaging | |
parent | 7b3fe980c6f43e57b6674ac01f97555a5c13315e (diff) | |
download | mana-e6d4a7e4dba7efda4ce06b8410ee31086b54c920.tar.gz mana-e6d4a7e4dba7efda4ce06b8410ee31086b54c920.tar.bz2 mana-e6d4a7e4dba7efda4ce06b8410ee31086b54c920.tar.xz mana-e6d4a7e4dba7efda4ce06b8410ee31086b54c920.zip |
Fixed a bug in windows setup script which caused translations to be extracted to the wrong directory.
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/windows/setup.nsi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index 6859a941..c5d1b483 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -188,8 +188,7 @@ Section "Music" SecMusic SectionEnd Section "Translations" SecTrans - CreateDirectory "$INSTDIR\translations" - SetOutPath "$INSTDIR\translations" + SetOutPath "$INSTDIR" File /nonfatal /r "${SRCDIR}\translations" SectionEnd |