hare

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

commit f5155ecdde0efa534bf811f7eab428331abb6747
parent 4efc5f7f4b09c9d16e1ff1b80df8479fe73d0bcf
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 10 Mar 2021 12:45:55 -0500

execute: don't error propegate exec::check

No need since we just return the value.

Diffstat:
Mplan.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plan.ha b/plan.ha @@ -133,7 +133,7 @@ fn execute( let proc = exec::start(&cmd)?; let st = exec::wait(&proc)?; - return exec::check(&st)?; + return exec::check(&st); }; fn mkfile(plan: *plan, ext: str) str = {