github.com/mutagen-io/mutagen@v0.18.0-rc1/cmd/external/flags.go (about) 1 package external 2 3 var ( 4 // DisableDaemonAutostart tells Mutagen cmd packages that they should 5 // disable daemon autostart behavior. This is the programmatic equivalent to 6 // MUTAGEN_DISABLE_AUTOSTART=1. The resulting behavior is the logical-OR of 7 // either condition (i.e. leaving this false does not override the 8 // environment variable specification). This variable must be set in an init 9 // function. 10 DisableDaemonAutostart bool 11 // UsePathBasedLookupForDaemonStart tells Mutagen cmd packages that they 12 // should use PATH-based lookups to identify the Mutagen executable when 13 // trying to start the Mutagen daemon. This is required for start (and 14 // autostart) behavior to function correctly if the calling executable is 15 // not the Mutagen CLI. This variable must be set in an init function. 16 UsePathBasedLookupForDaemonStart bool 17 )