mirror of
https://github.com/codex-storage/cli.git
synced 2025-02-28 16:40:43 +00:00
refactor installationHandlers.js to simplify installation command execution and remove redundant code
This commit is contained in:
parent
5ed9af4420
commit
0484003a45
@ -151,21 +151,7 @@ async function performInstall(config) {
|
||||
const downloadCommand = 'curl -# --connect-timeout 10 --max-time 60 -L https://get.codex.storage/install.sh -o install.sh && chmod +x install.sh';
|
||||
await runCommand(downloadCommand);
|
||||
|
||||
if (platform === 'darwin') {
|
||||
const timeoutCommand = `perl -e '
|
||||
eval {
|
||||
local $SIG{ALRM} = sub { die "timeout\\n" };
|
||||
alarm(120);
|
||||
system("INSTALL_DIR=\\"${installPath}\\" bash install.sh");
|
||||
alarm(0);
|
||||
};
|
||||
die if $@;
|
||||
'`;
|
||||
await runCommand(timeoutCommand);
|
||||
} else {
|
||||
await runCommand(`INSTALL_DIR="${installPath}" timeout 120 bash install.sh`);
|
||||
}
|
||||
|
||||
await runCommand(`INSTALL_DIR="${installPath}" timeout 120 bash install.sh`);
|
||||
await saveCodexExePath(config, path.join(installPath, "codex"));
|
||||
|
||||
} catch (error) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user