UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

17 lines (16 loc) 524 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.commandOpenGit = void 0; const child_process_promise_1 = require("child-process-promise"); const defineCommand_1 = require("../../core/defineCommand"); exports.commandOpenGit = (0, defineCommand_1.defineCommand)({ name: "project open git", description: "open the repo on gitlab / github in your browser", group: "project", inputs: {}, execute: async () => { await (0, child_process_promise_1.exec)("npx git-open"); } });