Skip to content

Commit 98ec61a

Browse files
committed
Hotfix: Remove PATH being passed into build
Quick revert of #10133 until we can think more about it.
1 parent 872f340 commit 98ec61a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

readthedocs/doc_builder/environments.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,9 @@ def run(self):
352352
exec_cmd = client.exec_create(
353353
container=self.build_env.container_id,
354354
cmd=self.get_wrapped_command(),
355-
environment=environment,
355+
environment=self._environment,
356+
# HOTFIX: Remove our custom PATH variable
357+
# environment=environment,
356358
user=self.user,
357359
workdir=self.cwd,
358360
stdout=True,

0 commit comments

Comments
 (0)