We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e88b970 + 69485ba commit 7036e44Copy full SHA for 7036e44
1 file changed
test/ui-e2e/run-ui-tests.sh
@@ -1,5 +1,12 @@
1
#!/bin/bash
2
3
+if [ -f .env ]; then
4
+ echo "Loading variables from .env file..."
5
+ set -a #export all variables
6
+ source .env
7
+ set +a # stop automatically exporting
8
+fi
9
+
10
#making sure we are in the correct dir
11
cd "$(dirname "$0")" || exit 1
12
0 commit comments