Skip to content

Commit

Permalink
Fix JNI build in docker failing due to no .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve committed May 13, 2024
1 parent 2316de9 commit beffceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/install_vcpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [ "$#" -lt 1 ]; then
fi

arrow_dir=$(cd -- "$(dirname -- "$0")/../.." && pwd -P)
default_vcpkg_version=$(source "${arrow_dir}/.env" && echo "$VCPKG")
default_vcpkg_version=$(source "${arrow_dir}/.env" && echo "$VCPKG" || echo "")
default_vcpkg_ports_patch="${arrow_dir}/ci/vcpkg/ports.patch"

vcpkg_destination=$1
Expand Down

0 comments on commit beffceb

Please sign in to comment.