Skip to content

Commit b11b7d2

Browse files
crossmindsjessfraz
authored andcommitted
Allow to pass command line arguments to dockerized firefox (#481)
* Allow to pass command line arguments to dockerized firefox * Double quoted
1 parent 14c7ab9 commit b11b7d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: firefox/entrypoint.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
if [[ -e /dev/snd ]]; then
4-
exec apulse firefox
4+
exec apulse firefox "$@"
55
else
6-
exec firefox
6+
exec firefox "$@"
77
fi

0 commit comments

Comments
 (0)