You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File decryption output is not visible when using ironhide in GitHub Actions. We use this function for our output (or println_paint):
pub fn print_paint(paint: yansi::Paint<String>) {
// only print to stdout if we're not being piped somewhere
if atty::is(atty::Stream::Stdout) {
print!("{}", paint);
}
}
I assume the condition is failing in this environment, in which case we print out nothing.
The atty also seems abandoned.
The text was updated successfully, but these errors were encountered:
We worked around this in IronCoreLabs/ironhide-actions like this and like this. We still don't have a solution for Windows, and either way the issue still stands.
We'd need a design of how we want to fix this. It's common to use isatty to toggle features like sending colors or not, but it isn't common to use it to decision sending output at all.
File decryption output is not visible when using ironhide in GitHub Actions. We use this function for our output (or
println_paint
):I assume the condition is failing in this environment, in which case we print out nothing.
The
atty
also seems abandoned.The text was updated successfully, but these errors were encountered: