hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit e6079e39c4931bb72e2fec78f0ceaa39e55a78bf
parent 8e85745f4de5c12f2b58f5086ba3d4bc46098962
Author: Alexey Yerin <yyp@disroot.org>
Date:   Tue, 31 May 2022 16:45:01 +0300

cmd/hare: add newlines after environment variables in verbose mode

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mcmd/hare/plan.ha | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/cmd/hare/plan.ha b/cmd/hare/plan.ha @@ -152,6 +152,7 @@ fn plan_execute(plan: *plan, verbose: bool) (void | !exec::exit_status) = { let item = plan.environ[i]; fmt::errorf("# {}=", item.0)!; shlex::quote(os::stderr, item.1)!; + fmt::errorln()!; }; };