Skip to content

Commit 37b37c1

Browse files
committed
include the bin dir
1 parent 48e1797 commit 37b37c1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.evergreen/scripts/configure-env.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export skip_ECS_auth_test="${skip_ECS_auth_test:-}"
7575
7676
export CARGO_HOME="$CARGO_HOME"
7777
export TMPDIR="$MONGO_ORCHESTRATION_HOME/db"
78+
export PYMONGO_BIN_DIR="$PYMONGO_BIN_DIR"
7879
export UV_TOOL_DIR="$UV_TOOL_DIR"
7980
export UV_CACHE_DIR="$UV_CACHE_DIR"
8081
export UV_TOOL_BIN_DIR="$DRIVERS_TOOLS_BINARIES"

.evergreen/sync-spawn-host.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ fi
77

88
target=$1
99
user=${target%@*}
10+
remote_dir=/home/$user/mongo-python-driver
1011

12+
echo "Copying files to $target..."
13+
rsync -az -e ssh --exclude '.git' --filter=':- .gitignore' -r . $target:$remote_dir
14+
echo "Copying files to $target... done."
1115
echo "Syncing files to $target..."
12-
rsync -haz -e ssh --exclude '.git' --filter=':- .gitignore' -r . $target:/home/$user/mongo-python-driver
1316
# shellcheck disable=SC2034
1417
fswatch -o . | while read f; do rsync -hazv -e ssh --exclude '.git' --filter=':- .gitignore' -r . $target:/home/$user/mongo-python-driver; done
1518
echo "Syncing files to $target... done."

0 commit comments

Comments
 (0)