This is an automated email from the ASF dual-hosted git repository.
RyanSkraba pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/main by this push:
new 07ac413eee AVRO-4309: [Python][Build] Add uvx to path explicitly
(#3879)
07ac413eee is described below
commit 07ac413eee65f493db899e0cb3caf67eea99006b
Author: Ryan Skraba <[email protected]>
AuthorDate: Sun Jul 26 18:44:56 2026 +0200
AVRO-4309: [Python][Build] Add uvx to path explicitly (#3879)
---
build.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/build.sh b/build.sh
index 67cbd23c39..7b550d815b 100755
--- a/build.sh
+++ b/build.sh
@@ -39,8 +39,9 @@ change_java_version() {
# ===========================================================================
-# This might not have been sourced if the entrypoint is not bash
+# These might not have been sourced if the entrypoint is not bash
[[ -f "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
+[[ -f "$HOME/.local/bin/env" ]] && . "$HOME/.local/bin/env"
set -xe
cd "${0%/*}"