13 lines
184 B
Bash
13 lines
184 B
Bash
#!/bin/sh
|
|
|
|
CMD="svg-templater"
|
|
|
|
if [ -n "$API_KEY" ]; then
|
|
CMD="$CMD --frontendkey $API_KEY"
|
|
fi
|
|
|
|
if [ -n "$DATA_DIR" ]; then
|
|
CMD="$CMD --data $DATA_DIR"
|
|
fi
|
|
|
|
eval exec $CMD "$@" |