Don't exit if the .env file is skipped

This commit is contained in:
Oliver Davies 2023-12-18 20:58:31 +00:00
parent 932c8f4bc7
commit 88af924ee4
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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
}

View file

@ -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