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 b14c844 commit 3da75c5Copy full SHA for 3da75c5
azure-deploy.sh
@@ -5,7 +5,7 @@ set -euo pipefail
5
FILE=".env"
6
if [[ -f $FILE ]]; then
7
echo "Loading from $FILE"
8
- export $(egrep . $FILE | xargs -n1)
+ export $(egrep "^[^#;]" $FILE | xargs -n1)
9
else
10
cat << EOF > .env
11
resourceGroup=""
@@ -24,7 +24,7 @@ fi
24
25
FILE="./api/.env"
26
27
-export $(egrep . $FILE | xargs -n1)
+export $(egrep "^[^#;]" $FILE | xargs -n1)
28
29
echo "Creating Resource Group...";
30
az group create \
0 commit comments