8 lines
141 B
Bash
8 lines
141 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Explicitly define HOME otherwise it might not have been set
|
||
|
export HOME=/config
|
||
|
|
||
|
echo "Starting MuWire"
|
||
|
exec /muwire/bin/MuWire
|