storj/cmd/bootstrap/entrypoint

9 lines
146 B
Plaintext
Raw Normal View History

#!/bin/sh
set -euo pipefail
if [ ! -f $HOME/.local/share/storj/bootstrap/config.yaml ]; then
/app/bootstrap setup
fi
exec ./bootstrap run "$@"