1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Fix minimal rebuilds on buildbot.

This commit is contained in:
David Anderson 2023-10-13 21:29:07 -07:00
parent 437de2b6fe
commit f71a1d37ec

View File

@ -36,9 +36,9 @@ def output_needs_cleaning():
if not os.path.isdir('OUTPUT'):
return False
amb2_dir = os.path.join('OUTPUT', '.ambuild2')
if not os.path.isdir(os.path.join(amb2_dir, 'graph')):
if not os.path.exists(os.path.join(amb2_dir, 'graph')):
return True
if not os.path.isdir(os.path.join(amb2_dir, 'vars')):
if not os.path.exists(os.path.join(amb2_dir, 'vars')):
return True
return False