From 70cc48ba418d69127e3a1d82415785c5964d9448 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 1 Aug 2023 18:45:20 -0700 Subject: modules/rkt: make the default base= "rkt" The "tiller" base (base being a Rocket concept) was always a bit spurious. Maybe "til" would make more sense, but "rkt" is more contextually specific. I think when I originally picked "tiller" I was prioritizing picking something unlikely to collide with another directory name. But the way Rocket is naming the directory in the filesystem it gets suffixed with an _ anyways. --- src/modules/rkt/rkt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/rkt') diff --git a/src/modules/rkt/rkt.c b/src/modules/rkt/rkt.c index 9697c42..96167ac 100644 --- a/src/modules/rkt/rkt.c +++ b/src/modules/rkt/rkt.c @@ -478,7 +478,7 @@ static int rkt_setup(const til_settings_t *settings, til_setting_t **res_setting &(til_setting_spec_t){ .name = "Rocket \"base\" label", .key = "base", - .preferred = "tiller", + .preferred = "rkt", .annotations = NULL, }, &base, -- cgit v1.2.1