ec09768b7e
Closes #20
12 lines
130 B
Bash
Executable file
12 lines
130 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
CURRENT_DIR=$(dirname $0)
|
|
|
|
if [ "$1" = "render" ]
|
|
then
|
|
$CURRENT_DIR/dcv "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|