10 lines
162 B
Bash
10 lines
162 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Build command arguments
|
|
if [ -n "$CONFIG_FILE" ]; then
|
|
exec ./interview-server -config "$CONFIG_FILE"
|
|
else
|
|
exec ./interview-server
|
|
fi
|