Login
checkout.s2 at [62c2d986fb]
Login

File bindings/s2/require.d/fsl/db/checkout.s2 artifact 6f553d3bed part of check-in 62c2d986fb


/**
   require() plugin which returns a handle to the repo Db object for
   Fossil.require's shared Fossil.Context.  If no checkout has been
   opened when this is called, openCheckout() is called on the
   context, otherwise there are no side effects.
*/
return requireS2(['fsl/context'], proc(F){
    affirm const d = F.db;
    if(!d.checkout){
        F.openCheckout();
    }
    affirm d.repo;
    return d.repo;
});