mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
Don't have to take the extra 2 seconds to make 'built' directory.
This commit is contained in:
parent
2bbe0aaa7c
commit
2a3c04bb35
1 changed files with 6 additions and 0 deletions
|
@ -176,6 +176,9 @@ class StridePackager(NiraiPackager):
|
|||
|
||||
# 1. Make the NRI
|
||||
if args.make_nri:
|
||||
if not os.path.exists('built'):
|
||||
os.mkdir('built')
|
||||
|
||||
pkg = StridePackager('built/stride.dist')
|
||||
|
||||
pkg.add_source_dir('otp')
|
||||
|
@ -188,6 +191,9 @@ if args.make_nri:
|
|||
|
||||
# 2. Compile CXX stuff
|
||||
if args.compile_cxx:
|
||||
if not os.path.exists('built'):
|
||||
os.mkdir('built')
|
||||
|
||||
sys.path.append('../../../N2')
|
||||
from niraitools import NiraiCompiler
|
||||
|
||||
|
|
Loading…
Reference in a new issue