Skip to content

Commit

Permalink
don’t use path_helper to munge path in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Aug 20, 2024
1 parent caf3cb7 commit 863bc58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dev/ci/lib/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function sanity_check_environment()
function add_bundler_path_to_gem_path()
{
local bundle_path

which -a bundle
if bundle_path=$(bundle show rake); then
bundle_path=$(dirname "$bundle_path")
bundle_path=$(dirname "$bundle_path")
Expand Down
8 changes: 1 addition & 7 deletions dev/ci/lib/set-container-envvars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,7 @@ if [[ "$EXECUTOR_NUMBER" != "" ]]; then
export TEST_PORT_BASE
fi

if [[ "$OS" = macos ]]; then
# Ensure that Homebrew tools can be found
echo $PATH
echo "$(/usr/libexec/path_helper -s)"
eval "$(/usr/libexec/path_helper -s)"
echo $PATH
else
if [[ "$OS" != macos ]]; then
export LC_CTYPE=C.UTF-8
fi

Expand Down

0 comments on commit 863bc58

Please sign in to comment.