Skip to content

Commit 517163d

Browse files
committed
Avoid using a symlink to _main
1 parent 173d336 commit 517163d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

javascript/private/closure_js_deps.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,9 @@ def closure_js_deps(name, deps = [], testonly = None, **kwargs):
9191
outs = ["deps.js"],
9292
cmd = """
9393
export BAZEL_BINDIR=$(BINDIR) && \\
94-
ln -sf . _main && \\
9594
FILES="" && \\
9695
for f in $(SRCS); do \\
97-
FILES="$$FILES --file $$(pwd)/_main/$$f"; \\
96+
FILES="$$FILES --file $$(pwd)/$$f"; \\
9897
done && \\
9998
$(location //javascript/private:closure_make_deps) \\
10099
--closure-path $$(pwd)/external/com_google_javascript_closure_library/closure \\

0 commit comments

Comments
 (0)