9 lines
146 B
Bash
Executable File
9 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
if [ ! -f $HOME/.local/share/storj/bootstrap/config.yaml ]; then
|
|
/app/bootstrap setup
|
|
fi
|
|
|
|
exec ./bootstrap run "$@"
|