diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-08-01 18:45:20 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-08-01 18:45:20 -0700 |
commit | 70cc48ba418d69127e3a1d82415785c5964d9448 (patch) | |
tree | 7d838a676d0fcc45db7c64e2c4db948d8b86c03f /src/modules | |
parent | b48a3f3595f446bbabe1637f19838b25b6eb888d (diff) |
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.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/rkt/rkt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |