Fixing path case.
This commit is contained in:
parent
3197198cf2
commit
4cbd267a52
|
@ -10,7 +10,7 @@ os:
|
|||
# Run setup to build ninja/gyp/etc and actually build xenia.
|
||||
before_script:
|
||||
- travis_retry ./xenia-build.py setup
|
||||
- ./xenia-build.py build
|
||||
- ./xenia-build.py build --debug
|
||||
|
||||
# Run test suite.
|
||||
script: ./test/run-tests.sh
|
||||
|
|
|
@ -416,7 +416,7 @@ class BuildCommand(Command):
|
|||
# TODO(benvanik): add arguments:
|
||||
# --force
|
||||
debug = '--debug' in args
|
||||
config = 'debug' if debug else 'release'
|
||||
config = 'Debug' if debug else 'Release'
|
||||
|
||||
print('Building %s...' % (config))
|
||||
print('')
|
||||
|
|
Loading…
Reference in New Issue