UNPKG

@devicecloud.dev/dcd

Version:

Better cloud maestro testing

21 lines (20 loc) 715 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.binaryFlags = void 0; const core_1 = require("@oclif/core"); /** * Binary upload and management flags */ exports.binaryFlags = { 'app-binary-id': core_1.Flags.string({ aliases: ['app-binary-id'], description: 'The ID of the app binary previously uploaded to devicecloud.dev', }), 'app-file': core_1.Flags.file({ aliases: ['app-file'], description: 'App binary to run your flows against', }), 'ignore-sha-check': core_1.Flags.boolean({ description: 'Ignore the sha hash check and upload the binary regardless of whether it already exists (not recommended)', }), };