mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-23 23:49:47 +08:00
minor build fixes
This commit is contained in:
parent
0cdb2bf034
commit
960ab1568d
2
Makefile
2
Makefile
@ -115,7 +115,7 @@ cleanlist:
|
||||
@git clean -dnx ${ROOT_CLEAN_IGNORES}
|
||||
|
||||
# Tell make which of these targets don't represent files.
|
||||
.PHONY: list prereqs prereqs-clean assets assets-cmake assests-win \
|
||||
.PHONY: list prereqs prereqs-clean assets assets-cmake assets-win \
|
||||
assets-mac assets-ios assets-android assets-clean \
|
||||
resources resources-clean code code-clean\
|
||||
clean cleanlist
|
||||
|
||||
@ -359,10 +359,11 @@ def check_clean_safety() -> None:
|
||||
|
||||
# Then also make sure there are no untracked changes to core files
|
||||
# (since we may be blowing core away here).
|
||||
status = os.system(
|
||||
os.path.join(str(PROJROOT), 'tools', 'spinoff') + ' cleancheck')
|
||||
if status != 0:
|
||||
sys.exit(255)
|
||||
spinoff_bin = os.path.join(str(PROJROOT), 'tools', 'spinoff')
|
||||
if os.path.exists(spinoff_bin):
|
||||
status = os.system(spinoff_bin + ' cleancheck')
|
||||
if status != 0:
|
||||
sys.exit(255)
|
||||
|
||||
|
||||
def get_master_asset_src_dir() -> None:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user