Fixing path case.

This commit is contained in:
Ben Vanik 2014-07-17 19:49:58 -07:00
parent 3197198cf2
commit 4cbd267a52
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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('')