fix relative path env in sndev

This commit is contained in:
k00b 2024-08-13 15:48:22 -05:00
parent ac87322ac8
commit cfd63f4efb
1 changed files with 2 additions and 2 deletions

4
sndev
View File

@ -2,9 +2,9 @@
set -e set -e
set -a # automatically export all variables set -a # automatically export all variables
. .env.development . ./.env.development
if [ -f .env.local ]; then if [ -f .env.local ]; then
. .env.local . ./.env.local
fi fi
docker__compose() { docker__compose() {