Fixed git checkout to canary-experimental instead of canary_experimental (#644)

This commit is contained in:
Binh Nguyen
2025-06-10 22:04:21 +07:00
committed by GitHub
parent 422517c673
commit 1d7973aea5

View File

@@ -717,7 +717,7 @@ class PullCommand(Command):
*args, **kwargs)
self.parser.add_argument(
'--merge', action='store_true',
help='Merges on canary-experimental instead of rebasing.')
help='Merges on canary_experimental instead of rebasing.')
self.parser.add_argument(
'--target_os', default=None,
help='Target OS passed to premake, for cross-compilation')
@@ -726,11 +726,11 @@ class PullCommand(Command):
print('Pulling...')
print('')
print('- switching to canary-experimental...')
print('- switching to canary_experimental...')
shell_call([
'git',
'checkout',
'canary-experimental',
'canary_experimental',
])
print('')
@@ -1474,12 +1474,12 @@ class NukeCommand(Command):
shutil.rmtree('build/')
print('')
print('- git reset to canary-experimental...')
print('- git reset to canary_experimental...')
shell_call([
'git',
'reset',
'--hard',
'canary-experimental',
'canary_experimental',
])
print('')