Skip to content
Snippets Groups Projects
Commit ba6f6bc4 authored by Simon McVittie's avatar Simon McVittie
Browse files

wrap: Respect --interactive even when bwrap doesn't work

parent 6df5c7c3
No related branches found
No related tags found
No related merge requests found
...@@ -252,6 +252,16 @@ if [ -n "$verbose" ]; then ...@@ -252,6 +252,16 @@ if [ -n "$verbose" ]; then
env | sed -e 's/^/\t/' >&2 env | sed -e 's/^/\t/' >&2
fi fi
if [ -n "$interactive" ]; then
exec </dev/tty
exec >/dev/tty
exec 2>/dev/tty
echo "$me: Starting interactive shell (original command is in \"\$@\")">&2
wrapped_command=(bash -i -s "$@")
else
wrapped_command=("$@")
fi
if [ -z "$BWRAP" ] || ! "$BWRAP" --bind / / true; then if [ -z "$BWRAP" ] || ! "$BWRAP" --bind / / true; then
echo "$me: cannot find bwrap or it doesn't work, falling back to executing '$*' directly" >&2 echo "$me: cannot find bwrap or it doesn't work, falling back to executing '$*' directly" >&2
...@@ -269,7 +279,7 @@ if [ -z "$BWRAP" ] || ! "$BWRAP" --bind / / true; then ...@@ -269,7 +279,7 @@ if [ -z "$BWRAP" ] || ! "$BWRAP" --bind / / true; then
unset LD_LIBRARY_PATH unset LD_LIBRARY_PATH
fi fi
exec "$@" exec "${wrapped_command[@]}"
fi fi
if "$BWRAP" --help | grep -F '[--]' 2>/dev/null; then if "$BWRAP" --help | grep -F '[--]' 2>/dev/null; then
...@@ -294,16 +304,6 @@ else ...@@ -294,16 +304,6 @@ else
esac esac
fi fi
if [ -n "$interactive" ]; then
exec </dev/tty
exec >/dev/tty
exec 2>/dev/tty
echo "$me: Starting interactive shell (original command is in \"\$@\")">&2
wrapped_command=(bash -i -s "$@")
else
wrapped_command=("$@")
fi
if [ -z "$fake_home" ]; then if [ -z "$fake_home" ]; then
if [ -n "${SteamAppId:-}" ]; then if [ -n "${SteamAppId:-}" ]; then
fake_home="$HOME/.var/app/com.steampowered.App$SteamAppId" fake_home="$HOME/.var/app/com.steampowered.App$SteamAppId"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment