Skip to content

Commit

Permalink
Fix build using wrong dir in bootstrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Oct 21, 2023
1 parent ae4e043 commit 17462cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/buildbot/bootstrap.py
Expand Up @@ -92,7 +92,8 @@ def main():
shutil.rmtree('OUTPUT')
if not os.path.isdir('OUTPUT'):
os.makedirs('OUTPUT')
run_shell(config_argv, env = build_env)
with Chdir('OUTPUT'):
run_shell(config_argv, env = build_env)

if __name__ == '__main__':
main()

0 comments on commit 17462cb

Please sign in to comment.