method ErrorFactory.githubCliNotFound
ErrorFactory.githubCliNotFound(): NagareError

Create a GitHub CLI not found error

Examples

Example 1

if (!await isGitHubCliInstalled()) {
  throw ErrorFactory.githubCliNotFound();
}

Return Type

Error with GitHub CLI installation instructions

Usage

import { ErrorFactory } from ".";