From 1d7973aea52dc9273984896160ab8374f9066ca6 Mon Sep 17 00:00:00 2001 From: Binh Nguyen <57819359+tuxy@users.noreply.github.com> Date: Tue, 10 Jun 2025 22:04:21 +0700 Subject: [PATCH] Fixed git checkout to canary-experimental instead of canary_experimental (#644) --- xenia-build | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xenia-build b/xenia-build index 3e3c75dea..5f42f06d8 100755 --- a/xenia-build +++ b/xenia-build @@ -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('')