You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.5 KiB
34 lines
1.5 KiB
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.spawnSudoAsync = exports.getPossibleProjectRoot = void 0;
|
|
const spawn_async_1 = __importDefault(require("@expo/spawn-async"));
|
|
const fs_1 = require("fs");
|
|
const sudo_prompt_1 = __importDefault(require("sudo-prompt"));
|
|
function getPossibleProjectRoot() {
|
|
return (0, fs_1.realpathSync)(process.cwd());
|
|
}
|
|
exports.getPossibleProjectRoot = getPossibleProjectRoot;
|
|
async function spawnSudoAsync(command, spawnOptions) {
|
|
// sudo prompt only seems to work on win32 machines.
|
|
if (process.platform === 'win32') {
|
|
return new Promise((resolve, reject) => {
|
|
sudo_prompt_1.default.exec(command.join(' '), { name: 'pod install' }, error => {
|
|
if (error) {
|
|
reject(error);
|
|
}
|
|
resolve();
|
|
});
|
|
});
|
|
}
|
|
else {
|
|
// Attempt to use sudo to run the command on Mac and Linux.
|
|
// TODO(Bacon): Make a v of sudo-prompt that's win32 only for better bundle size.
|
|
console.log('Your password might be needed to install CocoaPods CLI: https://guides.cocoapods.org/using/getting-started.html#installation');
|
|
await (0, spawn_async_1.default)('sudo', command, spawnOptions);
|
|
}
|
|
}
|
|
exports.spawnSudoAsync = spawnSudoAsync;
|
|
//# sourceMappingURL=PackageManager.js.map
|