Skip to content

Commit

Permalink
Fix /dev/input invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
ehfd authored Apr 23, 2024
1 parent 53785c9 commit 7bbdb35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selkies-gstreamer-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
export DISPLAY="${DISPLAY:-:0}"

# Configure joystick interposer
sudo mkdir -pm755 /dev/input
sudo touch /dev/input/{js0,js1,js2,js3}
sudo mkdir -pm755 /dev/input || true
sudo touch /dev/input/js0 /dev/input/js1 /dev/input/js2 /dev/input/js3 || true

# Show debug logs for GStreamer
export GST_DEBUG="${GST_DEBUG:-*:2}"
Expand Down

0 comments on commit 7bbdb35

Please sign in to comment.