All checks were successful
Linting and tests / Linting (push) Successful in 6s
9 lines
219 B
Bash
Executable File
9 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "* Starting bunkerd..."
|
|
if [ -n "${BUNKERD_DEBUG}" ]; then
|
|
exec /dlv --listen=:4000 --headless=true --log=true --accept-multiclient --api-version=2 exec /bunkerd --continue
|
|
else
|
|
exec /bunkerd
|
|
fi
|