Skip to content

Commit

Permalink
do not exit on flux compile fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacherr committed Jul 3, 2024
1 parent 017b112 commit db83eb3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion assyst-core/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ async fn main() {
register_interaction_commands(assyst.clone()).await.unwrap();

info!("Compiling Flux...");
FluxHandler::compile_flux().await.unwrap();
if let Err(e) = FluxHandler::compile_flux().await {
err!("Failed to compile flux: {e}");
}
info!("Flux is compiled");

let a = assyst.clone();
Expand Down

0 comments on commit db83eb3

Please sign in to comment.