We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb6009b commit 93b90ebCopy full SHA for 93b90eb
support/buildbot/bootstrap.py
@@ -36,9 +36,9 @@ def output_needs_cleaning():
36
if not os.path.isdir('OUTPUT'):
37
return False
38
amb2_dir = os.path.join('OUTPUT', '.ambuild2')
39
- if not os.path.isdir(os.path.join(amb2_dir, 'graph')):
+ if not os.path.exists(os.path.join(amb2_dir, 'graph')):
40
return True
41
- if not os.path.isdir(os.path.join(amb2_dir, 'vars')):
+ if not os.path.exists(os.path.join(amb2_dir, 'vars')):
42
43
44
0 commit comments