Skip to content

Commit eda52c4

Browse files
authored
Change fuchsia annotated builder to use getcwd() instead of "." (#76)
This change fixes the fuchsia annotated builder to work in a Docker container.
1 parent 6330f19 commit eda52c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zorg/buildbot/builders/annotated/fuchsia-linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def step(step_name, halt_on_fail=False):
2626
util.report('@@@STEP_EXCEPTION@@@')
2727

2828

29-
def run_command(cmd, directory='.'):
29+
def run_command(cmd, directory=os.getcwd()):
3030
util.report_run_cmd(cmd, cwd=directory)
3131

3232

0 commit comments

Comments
 (0)