From 3a2043f4d15d71b67b84828eb34f1b6569a88c01 Mon Sep 17 00:00:00 2001 From: rito528 <39003544+rito528@users.noreply.github.com> Date: Wed, 27 Mar 2024 00:43:28 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=E3=83=96=E3=83=A9=E3=83=B3=E3=83=81?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E3=82=921=5F18=E3=81=AB=E5=9B=BA=E5=AE=9A?= =?UTF-8?q?=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/src/main.rs b/server/src/main.rs index 373344a..0456301 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -44,9 +44,10 @@ mod infra_repository_impls { use std::process::Command; async fn switch_branch(branch: Branch) -> anyhow::Result<()> { + // TODO: masterブランチとdevelopブランチに1.18のコードが取り込まれたらでブランチ名を直す let branch_name = match branch { - Branch::Master => "master", - Branch::Develop => "develop", + Branch::Master => "1_18", + Branch::Develop => "1_18", }; Command::new("git")