hare

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

commit 475ed776987af2c5487fc4ec7c0dbc46340e55da
parent 906b051061d94e5e0bcfc29522012fae7145cfe3
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 11 Mar 2021 12:26:46 -0500

Fix output name selection

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

diff --git a/main.ha b/main.ha @@ -150,7 +150,7 @@ export fn main() void = { }; if (output == "") { - output = path::basename(os::resolve(ver.basedir)); + output = path::basename(ver.basedir); }; sched_hare_exe(&plan, ver.inputs, output, depends...);