On 8/18/2022 5:40 PM, Matthew John Cheetham via GitGitGadget wrote: > From: Matthew John Cheetham <mjcheetham@xxxxxxxxxxx> > > Using the built-in FSMonitor makes many common commands quite a bit > faster. So let's teach the `scalar register` command to enable the > built-in FSMonitor and kick-start the fsmonitor--daemon process (for > convenience). > +static int have_fsmonitor_support(void) > +{ > + return fsmonitor_ipc__is_supported() && > + fsm_settings__get_reason(the_repository) == FSMONITOR_REASON_OK; > +} The only thing I needed to check was that the_repository was initialized properly as part of 'scalar clone' and it indeed is. Thanks, -Stolee