Fix warn macro import for Linux build, add cargo PATH to release script

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-10 22:06:58 +01:00
parent 0cea6a4b28
commit b637432dce
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -1,6 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
# Ensure cargo is on PATH
export PATH="${HOME}/.cargo/bin:${PATH}"
# ============================================================ # ============================================================
# Release configuration # Release configuration
# ============================================================ # ============================================================
+1 -1
View File
@@ -2,7 +2,7 @@ use anyhow::{Context, Result};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::io::{Read, Write}; use std::io::{Read, Write};
use std::sync::Arc; use std::sync::Arc;
use tracing::{debug, info}; use tracing::{debug, info, warn};
use crate::shared_state::SharedState; use crate::shared_state::SharedState;