File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,22 @@ export UV_FROZEN=1 # Do not modify lock files
11
11
# Try to source the env file.
12
12
if [ -f $SCRIPT_DIR /scripts/env.sh ]; then
13
13
echo " Sourcing env inputs"
14
- source $SCRIPT_DIR /scripts/env.sh
14
+ . $SCRIPT_DIR /scripts/env.sh
15
15
else
16
16
echo " Not sourcing env inputs"
17
17
fi
18
18
19
19
# Ensure there are test inputs.
20
20
if [ -f $SCRIPT_DIR /scripts/test-env.sh ]; then
21
21
echo " Sourcing test inputs"
22
- source $SCRIPT_DIR /scripts/test-env.sh
22
+ . $SCRIPT_DIR /scripts/test-env.sh
23
23
else
24
24
echo " Missing test inputs, please run 'just setup-test'"
25
25
fi
26
26
27
27
# Source the local secrets export file if available.
28
28
if [ -f " $ROOT_DIR /secrets-export.sh" ]; then
29
- source " $ROOT_DIR /secrets-export.sh"
29
+ . " $ROOT_DIR /secrets-export.sh"
30
30
fi
31
31
32
32
echo " PATH2=$PATH "
Original file line number Diff line number Diff line change @@ -5,20 +5,15 @@ set -eu
5
5
HERE=$( dirname ${BASH_SOURCE:- $0 } )
6
6
pushd " $( dirname " $( dirname $HERE ) " ) " > /dev/null
7
7
8
- echo " PATH=$PATH "
9
-
10
8
# Source the env files to pick up common variables.
11
9
if [ -f $HERE /env.sh ]; then
12
- source $HERE /env.sh
10
+ . $HERE /env.sh
13
11
fi
14
12
# PYTHON_BINARY may be defined in test-env.sh.
15
13
if [ -f $HERE /test-env.sh ]; then
16
- source $HERE /test-env.sh
14
+ . $HERE /test-env.sh
17
15
fi
18
16
19
- echo " PATH=$PATH "
20
- exit 1
21
-
22
17
# Ensure dependencies are installed.
23
18
bash $HERE /install-dependencies.sh
24
19
You can’t perform that action at this time.
0 commit comments