2019-01-09 15:59:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -euo pipefail
|
|
|
|
|
2019-05-21 12:57:20 +01:00
|
|
|
if [ ! -f $HOME/.local/share/storj/bootstrap/config.yaml ]; then
|
|
|
|
/app/bootstrap setup
|
2019-01-09 15:59:51 +00:00
|
|
|
fi
|
|
|
|
|
2019-05-21 12:57:20 +01:00
|
|
|
exec ./bootstrap run "$@"
|