Merge pull request #1086 from bwrsandman/xenia-build-test-bin-path

[Test] Fix build_bin_path for case sensitive FS
This commit is contained in:
Justin Moore 2018-10-12 15:08:04 -05:00 committed by GitHub
commit 2fa7607547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ def get_build_bin_path(args):
platform = 'windows'
else:
platform = 'linux'
return os.path.join(self_path, 'build', 'bin', platform, args['config'])
return os.path.join(self_path, 'build', 'bin', platform.capitalize(), args['config'].capitalize())
def discover_commands(subparsers):