Skip to content

Commit

Permalink
fix: skip tendermint installation in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Jun 5, 2024
1 parent 1abb697 commit 0f6803c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion electron/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ async function installTendermintUnix() {

console.log(appendLog(`Installing tendermint binary`));
runCmdUnix('tar', ['-xvf', 'tendermint.tar.gz']);
await runSudoUnix('install', 'tendermint /usr/local/bin');

// TOFIX: Install tendermint in .operate instead of globally
if (!Env.CI) {
await runSudoUnix('install', 'tendermint /usr/local/bin');
}
process.chdir(cwd);
}

Expand Down

0 comments on commit 0f6803c

Please sign in to comment.