7 lines
139 B
Bash
Executable File
7 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -z "$GMRENDER_NAME" ]; then
|
|
/usr/local/bin/gmediarender
|
|
else
|
|
/usr/local/bin/gmediarender -f $GMRENDER_NAME
|
|
fi |