mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-08 16:15:03 +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.
|
# Start the project.
|
||||||
function start {
|
function start {
|
||||||
{% if not isFlake %}
|
{% if not isFlake %}
|
||||||
cp -v --no-clobber .env.example .env
|
cp -v --no-clobber .env.example .env || true
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
{% else %}
|
{% else %}
|
||||||
fractal start --sync
|
fractal start --sync
|
||||||
|
|
|
@ -96,7 +96,7 @@ function quality {
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
function start {
|
function start {
|
||||||
cp -v --no-clobber .env.example .env
|
cp -v --no-clobber .env.example .env || true
|
||||||
|
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@ function help {
|
||||||
# Start the project.
|
# Start the project.
|
||||||
function start {
|
function start {
|
||||||
{% if not isFlake %}
|
{% if not isFlake %}
|
||||||
cp -v --no-clobber .env.example .env
|
cp -v --no-clobber .env.example .env || true
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
{% else %}
|
{% else %}
|
||||||
fractal start --sync
|
fractal start --sync
|
||||||
|
|
Loading…
Reference in a new issue