UNPKG

shipthis

Version:

ShipThis manages building and uploading your Godot games to the App Store and Google Play.

42 lines (39 loc) 1.15 kB
import { Flags } from '@oclif/core'; import { c as BaseGameCommand } from '../../../index-BwnzoldS.js'; import 'node:fs'; import 'axios'; import 'crypto-js'; import 'uuid'; import 'luxon'; import 'node:path'; import '@expo/apple-utils/build/index.js'; import 'node:crypto'; import 'node:readline'; import 'node:url'; import 'readline-sync'; import 'isomorphic-git'; import 'deepmerge'; import 'ini'; import '@tanstack/react-query'; import 'react'; import 'fast-glob'; import 'yazl'; import 'socket.io-client'; import 'fullscreen-ink'; import 'ink'; class GameAndroidStatus extends BaseGameCommand { static args = {}; static description = "Shows the status of the setup for the Android platform for a specific game."; static examples = [ "<%= config.bin %> <%= command.id %>", "<%= config.bin %> <%= command.id %> --gameId 0c179fc4" ]; static flags = { gameId: Flags.string({ char: "g", description: "The ID of the game" }) }; async run() { const game = await this.getGame(); await this.config.runCommand("game:status", ["--gameId", game.id, "--platform", "android"]); } } export { GameAndroidStatus as default };