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:
commit
2fa7607547
|
@ -389,7 +389,7 @@ def get_build_bin_path(args):
|
||||||
platform = 'windows'
|
platform = 'windows'
|
||||||
else:
|
else:
|
||||||
platform = 'linux'
|
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):
|
def discover_commands(subparsers):
|
||||||
|
|
Loading…
Reference in New Issue