Skip to content

Commit

Permalink
warpinator-launch.py: Fix hardcoded paths.
Browse files Browse the repository at this point in the history
Fixes #206
  • Loading branch information
mtwebster committed Feb 1, 2024
1 parent a81c39d commit 1aeae3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/warpinator-launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@

launch_args = []

launch_args += ["/bin/bwrap"]
launch_args += ["/usr/bin/bwrap"]
launch_args += ["--ro-bind", "/", "/"]
launch_args += ["--dev", "/dev"]
launch_args += ["--bind", rundir + "/dconf", rundir + "/dconf"]
Expand All @@ -156,7 +156,7 @@
launch_args += ["--die-with-parent"]

# launch_args += ["/bin/sh"]
launch_args += ["/bin/python3", warpinator_path]
launch_args += ["/usr/bin/python3", warpinator_path]

ret = 0

Expand Down

0 comments on commit 1aeae3a

Please sign in to comment.