Skip to content

Commit

Permalink
fix: SeichiAssistのビルドコマンドの間違いを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Mar 26, 2024
1 parent 1b9c34e commit 4afb1aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ mod infra_repository_impls {
switch_branch(Branch::Master).await?;
println!("b");
let sbt_compile_log = Command::new("sbt")
.arg("build")
.arg("assembly")
.current_dir("/SeichiAssist")
.output()?;
println!("{:?}", sbt_compile_log);
Expand All @@ -92,7 +92,7 @@ mod infra_repository_impls {
async fn run_develop_build(&self) -> anyhow::Result<()> {
switch_branch(Branch::Develop).await?;
Command::new("sbt")
.arg("build")
.arg("assembly")
.current_dir("/SeichiAssist")
.status()?;

Expand Down

0 comments on commit 4afb1aa

Please sign in to comment.