8 lines
141 B
Plaintext
8 lines
141 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -f $HOME/.local/share/storj/versioncontrol/config.yaml ]; then
|
||
|
/app/versioncontrol setup
|
||
|
fi
|
||
|
|
||
|
exec /app/versioncontrol run
|