isSkipBootstrap method

bool isSkipBootstrap(
  1. ArtisanContext ctx
)
inherited

Returns true when the operator passed --no-bootstrap.

@param ctx The active ArtisanContext handed to handle. @return The boolean value of the --no-bootstrap flag.

Implementation

bool isSkipBootstrap(ArtisanContext ctx) =>
    ctx.input.option('no-bootstrap') as bool;