We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3979e3a commit 0dd88dbCopy full SHA for 0dd88db
src/setup.sh
@@ -323,7 +323,10 @@ if [ -f ${rootDirPath}/.env ]; then
323
# Trim any surrounding whitespace
324
key=$(echo $key | xargs)
325
value=$(echo $value | xargs)
326
- export "$key=$value"
+ if [ "$key" != "" ]; then
327
+ # echo ".env: key=$key, value=$value"
328
+ export "$key=$value"
329
+ fi
330
fi
331
done < ${rootDirPath}/.env
332
else
0 commit comments