Skip to content

Commit 93b90eb

Browse files
committed
Fix minimal rebuilds on buildbot.
1 parent fb6009b commit 93b90eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

support/buildbot/bootstrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def output_needs_cleaning():
3636
if not os.path.isdir('OUTPUT'):
3737
return False
3838
amb2_dir = os.path.join('OUTPUT', '.ambuild2')
39-
if not os.path.isdir(os.path.join(amb2_dir, 'graph')):
39+
if not os.path.exists(os.path.join(amb2_dir, 'graph')):
4040
return True
41-
if not os.path.isdir(os.path.join(amb2_dir, 'vars')):
41+
if not os.path.exists(os.path.join(amb2_dir, 'vars')):
4242
return True
4343
return False
4444

0 commit comments

Comments
 (0)