Compare commits

...

1 Commits

Author SHA1 Message Date
7cb5237fdd fix(secret): openbao implementation wrong fs write call on windows
All checks were successful
Run Check Script / check (push) Successful in 1m48s
Compile and package harmony_composer / package_harmony_composer (push) Successful in 7m40s
2026-03-23 09:20:43 -04:00

View File

@@ -183,7 +183,7 @@ impl OpenbaoSecretStore {
}
#[cfg(not(unix))]
{
fs::write(path, token)?;
fs::write(path, serde_json::to_string(token)?.as_bytes())?;
}
Ok(())
}