26 lines
1.3 KiB
JavaScript
26 lines
1.3 KiB
JavaScript
|
|
"use strict";
|
||
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||
|
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||
|
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||
|
|
});
|
||
|
|
};
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.locateAppOnLinux = void 0;
|
||
|
|
const child_process_1 = require("child_process");
|
||
|
|
const util_1 = require("util");
|
||
|
|
const exec = (0, util_1.promisify)(child_process_1.exec);
|
||
|
|
function locateAppOnLinux({ appName, linuxWhich, }) {
|
||
|
|
return __awaiter(this, void 0, void 0, function* () {
|
||
|
|
const { stderr, stdout } = yield exec(`which ${linuxWhich}`);
|
||
|
|
if (!stderr && stdout) {
|
||
|
|
return stdout.trim();
|
||
|
|
}
|
||
|
|
throw new Error(`Can not locate app ${appName} on Linux.\n ${stderr}`);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
exports.locateAppOnLinux = locateAppOnLinux;
|
||
|
|
//# sourceMappingURL=locateAppOnLinux.js.map
|