Skip to content

Commit 0453670

Browse files
committed
fix: automatically watch directories for local packages
Signed-off-by: Amaury Pouly <[email protected]>
1 parent 71dbb10 commit 0453670

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

python/private/pypi/whl_library.bzl

+10
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,16 @@ def _whl_library_impl(rctx):
257257
timeout = rctx.attr.timeout,
258258
logger = logger,
259259
)
260+
# If the requirement was a local directory, then we need to watch its content
261+
# to recreate the repository when it is modified.
262+
# Assume that such packages are imported using a single line requirement
263+
# of the form [<name> @] file://<path>
264+
# We might have to perform some substitutions in the string before searching.
265+
subst_req = envsubst(rctx.attr.requirement, environment.keys(), lambda x, dft: environment[x])
266+
if subst_req.startswith('file://'):
267+
_, path = subst_req.split("file://", 1)
268+
logger.info(lambda: "watching tree {} for wheel library {}".format(path, rctx.name))
269+
rctx.watch_tree(path)
260270

261271
whl_path = rctx.path(json.decode(rctx.read("whl_file.json"))["whl_file"])
262272
if not rctx.delete("whl_file.json"):

0 commit comments

Comments
 (0)