Skip to content

Commit

Permalink
refactor: remove utils.home_directory and use get_home_directory from…
Browse files Browse the repository at this point in the history
… Aspect bazel-lib utils instead (#1606)
  • Loading branch information
gregmagolan authored and jbedard committed May 6, 2024
1 parent 02e5521 commit 9d496c0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion npm/extensions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _npm_lock_imports_bzlmod(module_ctx, attr):
(registries, npm_auth) = npm_translate_lock_helpers.get_npm_auth(npmrc, module_ctx.path(attr.npmrc), module_ctx.os.environ)

if attr.use_home_npmrc:
home_directory = utils.home_directory(module_ctx)
home_directory = repo_utils.home_directory(module_ctx)
if home_directory:
home_npmrc_path = "{}/{}".format(home_directory, ".npmrc")
home_npmrc = parse_npmrc(module_ctx.read(home_npmrc_path))
Expand Down
2 changes: 1 addition & 1 deletion npm/private/npm_translate_lock_state.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def _load_npmrc(priv, rctx, npmrc_path):

################################################################################
def _load_home_npmrc(priv, rctx):
home_directory = utils.home_directory(rctx)
home_directory = repo_utils.get_home_directory(rctx)
if not home_directory:
# buildifier: disable=print
print("""
Expand Down
4 changes: 0 additions & 4 deletions npm/private/utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,6 @@ if [ ! -f $1 ]; then exit 42; fi
else:
fail(INTERNAL_ERROR_MSG)

def _home_directory(rctx):
return repo_utils.get_env_var(rctx, "HOME", None)

def _replace_npmrc_token_envvar(token, npmrc_path, environ):
# A token can be a reference to an environment variable
if token.startswith("$"):
Expand Down Expand Up @@ -457,7 +454,6 @@ utils = struct(
dicts_match = _dicts_match,
reverse_force_copy = _reverse_force_copy,
exists = _exists,
home_directory = _home_directory,
replace_npmrc_token_envvar = _replace_npmrc_token_envvar,
is_vendored_tarfile = _is_vendored_tarfile,
is_tarball_extension = _is_tarball_extension,
Expand Down

0 comments on commit 9d496c0

Please sign in to comment.