Generate single header even if output dir does not exist

This commit is contained in:
Martin Hořeňovský 2017-06-04 21:28:08 +02:00
parent 169e260e8b
commit 0020747420
1 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,8 @@ for arg in sys.argv[1:]:
print( "\n** Unrecognised argument: " + arg + " **\n" )
exit(1)
# ensure that the output directory exists
os.makedirs(os.path.dirname(outputPath), exist_ok = True)
out = open( outputPath, 'w' )
ifdefs = 0
implIfDefs = -1