hare

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

commit f95af062e2331caeb4bffbe1f62e7f3c61bf2f59
parent a000d7f05ffa98ca488aa5390fed43666592a398
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 21 Apr 2022 15:44:32 -0400

cmd/hare: add release to help text

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mcmd/hare/main.ha | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cmd/hare/main.ha b/cmd/hare/main.ha @@ -12,7 +12,8 @@ def HAREPATH: str = "."; export fn main() void = { const help: []getopt::help = [ "compile, run, and test Hare programs", - "<build | cache | deps | run | test | version>", "args...", + "<build | cache | deps | release | run | test | version>", + "args...", ]; const cmd = getopt::parse(os::args, help...); defer getopt::finish(&cmd);