Skip to content

Commit

Permalink
chore: ブランチ指定を1_18に固定する
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Mar 26, 2024
1 parent 4afb1aa commit 3a2043f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 3a2043f

Please sign in to comment.