On Sat, Aug 18, 2018 at 9:11 AM Duy Nguyen <pclouds@xxxxxxxxx> wrote: > > On Tue, Aug 14, 2018 at 12:45 AM Stefan Beller <sbeller@xxxxxxxxxx> wrote: > > +static int module_update_module_mode(int argc, const char **argv, const char *prefix) > > +{ > > + const char *path, *update = NULL; > > + int just_cloned; > > + struct submodule_update_strategy update_strategy = { .type = SM_UPDATE_CHECKOUT }; > > + > > + if (argc < 3 || argc > 4) > > + die("submodule--helper update-module-clone expects <just-cloned> <path> [<update>]"); > > Maybe _() ? I would rather not, as the submodule--helper is "internal only" and these die() calls could be clarified via #define BUG_IN_CALLING_SH(x) die(x) After the conversion to C is done, all these submodule helpers would go away, so I'd not burden the translators too much? Thanks, Stefan