Skip to content

Commit

Permalink
fix(env): list headers without additional line break
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielBrandao1618 committed May 28, 2024
1 parent 9aba30b commit ff84570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/action/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub fn header_set(ctx: &Ctx, args: Vec<String>) -> QuartzResult {
}
pub fn header_ls(ctx: &Ctx) -> QuartzResult {
let env = ctx.require_env();
println!("{}", env.headers);
print!("{}", env.headers);
Ok(())
}
pub fn header_rm(ctx: &Ctx, keys: Vec<String>) -> QuartzResult {
Expand Down

0 comments on commit ff84570

Please sign in to comment.