Skip to content

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
dynco-nym committed Oct 28, 2024
1 parent cc98396 commit 9583a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nym-node-status-api/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const SQLITE_DB_FILENAME: &str = "nym-node-status-api.sqlite";

/// If you need to re-run migrations or reset the db, just run
/// cargo clean -p nym-node-status-api
#[tokio::main]
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
let out_dir = read_env_var("OUT_DIR")?;
let database_path = format!("sqlite://{}/{}?mode=rwc", out_dir, SQLITE_DB_FILENAME);
Expand Down

0 comments on commit 9583a5c

Please sign in to comment.