hare

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

commit 8468b94e11d01aad94264074a43fa0613b9baa1a
parent fad0ccbf7c84966e5dada08bb51e2c7f89023d00
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Mon,  8 Mar 2021 17:52:17 -0500

hare::module: use dirs::data as default $HAREPATH

Rather than dirs::config

Diffstat:
Mhare/module/context.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hare/module/context.ha b/hare/module/context.ha @@ -30,7 +30,7 @@ export fn context_init(tags: []tag) context = { void => { let path: []path::path = alloc([ DEFAULT_HAREPATH, - dirs::config("hare"), + dirs::data("hare"), ]); path; },