mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-05 06:53:18 +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}
|
@git clean -dnx ${ROOT_CLEAN_IGNORES}
|
||||||
|
|
||||||
# Tell make which of these targets don't represent files.
|
# 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 \
|
assets-mac assets-ios assets-android assets-clean \
|
||||||
resources resources-clean code code-clean\
|
resources resources-clean code code-clean\
|
||||||
clean cleanlist
|
clean cleanlist
|
||||||
|
|||||||
@ -359,10 +359,11 @@ def check_clean_safety() -> None:
|
|||||||
|
|
||||||
# Then also make sure there are no untracked changes to core files
|
# Then also make sure there are no untracked changes to core files
|
||||||
# (since we may be blowing core away here).
|
# (since we may be blowing core away here).
|
||||||
status = os.system(
|
spinoff_bin = os.path.join(str(PROJROOT), 'tools', 'spinoff')
|
||||||
os.path.join(str(PROJROOT), 'tools', 'spinoff') + ' cleancheck')
|
if os.path.exists(spinoff_bin):
|
||||||
if status != 0:
|
status = os.system(spinoff_bin + ' cleancheck')
|
||||||
sys.exit(255)
|
if status != 0:
|
||||||
|
sys.exit(255)
|
||||||
|
|
||||||
|
|
||||||
def get_master_asset_src_dir() -> None:
|
def get_master_asset_src_dir() -> None:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user