Merge pull request #238 from kiwix/fix_src_path

Fix the src path of kiwix-desktop when doing release.
This commit is contained in:
Matthieu Gautier 2018-08-06 11:31:03 +02:00 committed by GitHub
commit 54458ccb0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ def create_app_image():
if make_release: if make_release:
postfix = main_project_versions['kiwix-desktop'] postfix = main_project_versions['kiwix-desktop']
archive_dir = RELEASE_KIWIX_ARCHIVES_DIR/'kiwix-desktop' archive_dir = RELEASE_KIWIX_ARCHIVES_DIR/'kiwix-desktop'
src_dir = SOURCE_DIR/'kiwix-desktop-{}'.format(postfix) src_dir = SOURCE_DIR/'kiwix-desktop_release'
else: else:
postfix = _date postfix = _date
archive_dir = NIGHTLY_KIWIX_ARCHIVES_DIR archive_dir = NIGHTLY_KIWIX_ARCHIVES_DIR