Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  ios-version.ts

  Sprache: JAVA
 

Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

import path from "node:path";
import { resolveIosVersion } from "./lib/ios-version.ts";

type CliOptions = {
  field: string | null;
  format: "json" | "shell";
  rootDir: string;
};

function parseArgs(argv: string[]): CliOptions {
  let field: string | null = null;
  let format: "json" | "shell" = "json";
  let rootDir = path.resolve(".");

  for (let index = 0; index < argv.length; index += 1) {
    const arg = argv[index];
    switch (arg) {
      case "--field": {
        field = argv[index + 1] ?? null;
        index += 1;
        break;
      }
      case "--json": {
        format = "json";
        break;
      }
      case "--shell": {
        format = "shell";
        break;
      }
      case "--root": {
        const value = argv[index + 1];
        if (!value) {
          throw new Error("Missing value for --root.");
        }
        rootDir = path.resolve(value);
        index += 1;
        break;
      }
      case "-h":
      case "--help": {
        console.log(
          `Usage: node --import tsx scripts/ios-version.ts [--json|--shell] [--field name] [--root dir]\n`,
        );
        process.exit(0);
      }
      default: {
        throw new Error(`Unknown argument: ${arg}`);
      }
    }
  }

  return { field, format, rootDir };
}

const options = parseArgs(process.argv.slice(2));
const version = resolveIosVersion(options.rootDir);

if (options.field) {
  const value = version[options.field as keyof typeof version];
  if (value === undefined) {
    throw new Error(`Unknown iOS version field '${options.field}'.`);
  }
  process.stdout.write(`${value}\n`);
  process.exit(0);
}

if (options.format === "shell") {
  process.stdout.write(
    [
      `OPENCLAW_IOS_VERSION=${version.canonicalVersion}`,
      `OPENCLAW_MARKETING_VERSION=${version.marketingVersion}`,
      `OPENCLAW_BUILD_VERSION=${version.buildVersion}`,
    ].join("\n") + "\n",
  );
} else {
  process.stdout.write(`${JSON.stringify(version, null, 2)}\n`);
}

¤ Dauer der Verarbeitung: 0.20 Sekunden  (vorverarbeitet am  2026-04-27) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge