mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-05 16:02:48 +00:00
Explicitely call bash instead of /bin/sh (#512)
The /bin/sh file is a link, not an actual binary, and that can point to /bin/bash as well as other shells, like /bin/dash in recent ubuntu versions. To be consistent between linux distributions, and avoid issues like missing support for bash functions (e.g. source), let's call /bin/bash instead.
This commit is contained in:
parent
91cf28045d
commit
d8cbef6843
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
text="`printf " <b>Multiplayer Instructions</b>\n\n Invite your friend on the next window\n\nPress the STEAM Button and go back to Library, open <b>EmulationStation</b>, launch your game and enjoy!!\n\nAs of now only games launched using EmulationStation work on Multiplayer mode\n\n<b>RemotePlayWhatever is in early beta, so expecto some crashes here and there</b>)"`"
|
||||
zenity --info \
|
||||
@ -6,4 +6,5 @@
|
||||
--width="450" \
|
||||
--text="${text}" 2>/dev/null
|
||||
|
||||
~/Applications/RemotePlayWhatever.AppImage
|
||||
~/Applications/RemotePlayWhatever.AppImage
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
#!/bin/sh
|
||||
~/Applications/EmuDeck.AppImage --isGameMode
|
||||
#!/bin/bash
|
||||
~/Applications/EmuDeck.AppImage --isGameMode
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user