Skip to content
Snippets Groups Projects
Commit 8a1db2ae authored by jurgenhaas's avatar jurgenhaas
Browse files

Fix switching debug mode by explicitly setting new environment variable

parent fc4fda7b
Branches
Tags v1.7.1
No related merge requests found
...@@ -5,12 +5,14 @@ commands: ...@@ -5,12 +5,14 @@ commands:
usage: Update DorgFlow setup in project usage: Update DorgFlow setup in project
on: on:
cmd: | cmd: |
DORGFLOW=1
echo "DORGFLOW=1" >>.env echo "DORGFLOW=1" >>.env
env -i $(cat .env | xargs) >.env env -i $(cat .env | xargs) >.env
composer lakedrops:dorgflow --no-interaction composer lakedrops:dorgflow --no-interaction
usage: Turn on dorgflow usage: Turn on dorgflow
off: off:
cmd: | cmd: |
DORGFLOW=0
echo "DORGFLOW=0" >>.env echo "DORGFLOW=0" >>.env
env -i $(cat .env | xargs) >.env env -i $(cat .env | xargs) >.env
composer lakedrops:dorgflow --no-interaction composer lakedrops:dorgflow --no-interaction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment