mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-02 05:47:32 +00:00
Don't exit if the .env
file is skipped
This commit is contained in:
parent
932c8f4bc7
commit
88af924ee4
|
@ -57,7 +57,7 @@ function help {
|
|||
# Start the project.
|
||||
function start {
|
||||
{% if not isFlake %}
|
||||
cp -v --no-clobber .env.example .env
|
||||
cp -v --no-clobber .env.example .env || true
|
||||
docker compose up -d
|
||||
{% else %}
|
||||
fractal start --sync
|
||||
|
|
|
@ -96,7 +96,7 @@ function quality {
|
|||
{% endif %}
|
||||
|
||||
function start {
|
||||
cp -v --no-clobber .env.example .env
|
||||
cp -v --no-clobber .env.example .env || true
|
||||
|
||||
docker compose up -d
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ function help {
|
|||
# Start the project.
|
||||
function start {
|
||||
{% if not isFlake %}
|
||||
cp -v --no-clobber .env.example .env
|
||||
cp -v --no-clobber .env.example .env || true
|
||||
docker compose up -d
|
||||
{% else %}
|
||||
fractal start --sync
|
||||
|
|
Loading…
Reference in a new issue