@lamantin/fastpush
Version:
Typed fastlane frontend for pushing builds to store
14 lines • 457 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.tag = void 0;
const shelljs_1 = require("shelljs");
function tag(name, description = '') {
if ((description === null || description === void 0 ? void 0 : description.length) > 0) {
shelljs_1.exec(`git tag -a ${name} -m '${description}'`);
}
else {
shelljs_1.exec(`git tag -a ${name}`);
}
}
exports.tag = tag;
//# sourceMappingURL=tag.js.map