mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-07 21:01:43 -05:00
12 lines
154 B
Bash
12 lines
154 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# init OpenCloud
|
|
opencloud init
|
|
|
|
if [ "$WITH_WRAPPER" = "true" ]; then
|
|
ocwrapper serve --bin=opencloud
|
|
else
|
|
opencloud server
|
|
fi
|