Skip to content

Commit 81639ca

Browse files
committed
fix: automatically watch directories for local packages
Signed-off-by: Amaury Pouly <[email protected]>
1 parent 08ba406 commit 81639ca

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

python/private/pypi/whl_library.bzl

+11
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,17 @@ def _whl_library_impl(rctx):
259259
logger = logger,
260260
)
261261

262+
# If the requirement was a local directory, then we need to watch its content
263+
# to recreate the repository when it is modified.
264+
# Assume that such packages are imported using a single line requirement
265+
# of the form [<name> @] file://<path>
266+
# We might have to perform some substitutions in the string before searching.
267+
subst_req = envsubst(rctx.attr.requirement, environment.keys(), lambda x, dft: environment[x])
268+
if subst_req.startswith("file://"):
269+
_, path = subst_req.split("file://", 1)
270+
logger.info(lambda: "watching tree {} for wheel library {}".format(path, rctx.name))
271+
rctx.watch_tree(path)
272+
262273
whl_path = rctx.path(json.decode(rctx.read("whl_file.json"))["whl_file"])
263274
if not rctx.delete("whl_file.json"):
264275
fail("failed to delete the whl_file.json file")

0 commit comments

Comments
 (0)