hare

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

commit 7c10c1db0f936bf6589a54868175e529aa091599
parent 1b607689edfbd8bdc3fccfff6ac9f0846edee454
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 12 Mar 2021 10:56:29 -0500

build: add TODO regarding default output name

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

diff --git a/subcmds.ha b/subcmds.ha @@ -1,6 +1,5 @@ use fmt; use getopt; -use hare::ast; use hare::module; use os; use path; @@ -78,6 +77,7 @@ fn build(args: []str) void = { append(depends, obj); }; + // TODO: Choose this more intelligently if (output == "") { output = path::basename(ver.basedir); };