@@ -885,6 +885,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
885885 step((generator = generator.apply(thisArg, _arguments || [])).next());
886886 });
887887};
888+ var __importDefault = (this && this.__importDefault) || function (mod) {
889+ return (mod && mod.__esModule) ? mod : { "default": mod };
890+ };
888891Object.defineProperty(exports, "__esModule", ({ value: true }));
889892exports.post = exports.pre = exports.main = void 0;
890893const core = __importStar(__nccwpck_require__(2186));
@@ -898,6 +901,7 @@ const cljstyle = __importStar(__nccwpck_require__(2661));
898901const zprint = __importStar(__nccwpck_require__(982));
899902const utils = __importStar(__nccwpck_require__(918));
900903const cache = __importStar(__nccwpck_require__(3782));
904+ const node_process_1 = __importDefault(__nccwpck_require__(7742));
901905function main() {
902906 return __awaiter(this, void 0, void 0, function* () {
903907 try {
@@ -1030,10 +1034,12 @@ function post() {
10301034 tools.push(cache.save(zprint.identifier, ZPRINT_VERSION));
10311035 }
10321036 yield Promise.all(tools);
1037+ node_process_1.default.exit(0);
10331038 }
10341039 catch (err) {
10351040 const error = err instanceof Error ? err.message : String(err);
10361041 core.debug(error);
1042+ node_process_1.default.exit(1);
10371043 }
10381044 });
10391045}
@@ -86845,6 +86851,14 @@ module.exports = require("node:events");
8684586851
8684686852/***/ }),
8684786853
86854+ /***/ 7742:
86855+ /***/ ((module) => {
86856+
86857+ "use strict";
86858+ module.exports = require("node:process");
86859+
86860+ /***/ }),
86861+
8684886862/***/ 4492:
8684986863/***/ ((module) => {
8685086864
0 commit comments