appimage: Can now get a shell inside the AppImage.

- The --self_test option is no longer needed. Instead do:
- # APPIMAGE_ENTER=1 ./vigil.appimage   # To enter the shell
- # $APPDIR/test-all
This commit is contained in:
Andrew Hamilton 2017-07-23 18:39:24 +01:00
parent 93d1fdb87a
commit 20161303fc
3 changed files with 13 additions and 15 deletions

View file

@ -72,7 +72,7 @@ def make_app_dir(app_dir, new_paths):
os.mkdir(app_dir)
make_sub_container("ubuntu", app_dir, new_paths)
cmd("cp -a %s/tests %s" % (VIGIL_PATH, app_dir))
cmd("cp -a %s/test-all %s/tests" % (VIGIL_PATH, app_dir))
cmd("cp -a %s/test-all %s" % (VIGIL_PATH, app_dir))
cmd("cp %s/appimage/* %s" % (VIGIL_PATH, app_dir))
# if not os.path.exists("libunionpreload.so"):
# make_libunionpreload()