private static function useRepositoryLock()

in src/shipit/ShipItManifest.php [176:188]


  private static function useRepositoryLock(): bool {
    $env = ShipItEnv::getEnv('NO_REPO_LOCK');
    if (
      (!$env is string) ||
      $env === '' ||
      $env === '0' ||
      Str\lowercase($env) === 'false'
    ) {
      return true;
    }
    ShipItLogger::out("(Repository locks disabled)\n");
    return false;
  }