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