From c256857e0153a6439802d387a8bd0850739e61a5 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 3 Aug 2018 15:26:37 +0200 Subject: [PATCH] Create the app image using the ".appimage" extension. Fix kiwix/kiwix-desktop#19 --- travis/compile_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index d4958fe..2250fa1 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -112,7 +112,7 @@ def create_app_image(): except FileExistsError: pass - app_name = "kiwix-desktop_x86_64_{}".format(postfix) + app_name = "kiwix-desktop_x86_64_{}.appimage".format(postfix) print_message("Copy AppImage to {}".format(archive_dir/app_name)) shutil.copy(str(HOME/'Kiwix-x86_64.AppImage'), str(archive_dir/app_name))