From c91f866d95e2712f3ca58c15c2f73af25ac8f12c Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 12 May 2021 11:06:25 +1000 Subject: [PATCH] Fix app image start for non-debian based distribs (#1622) Fixes #1620 --- build/launcher-script.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/launcher-script.sh b/build/launcher-script.sh index 8c4f3185b..644380a0d 100755 --- a/build/launcher-script.sh +++ b/build/launcher-script.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash -set -e + +# do not set -x here because it will fail on non-debian based distrib +# set -e # Some distributions do not have unprivileged_userns_clone disabled. # If that's the case, and we run an AppImage (deb is not impacted by this),