Skip to content

Commit

Permalink
chore: fix directory creation
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoreira-valory committed Jul 23, 2024
1 parent faef2a0 commit facc290
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions electron/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,9 @@ function removeInstallationLogFile() {

async function setupDarwin(ipcChannel) {
removeInstallationLogFile();
// console.log(appendInstallationLog('Creating required directories'));
// await createDirectory(`${paths.dotOperateDirectory}`);
// await createDirectory(`${paths.dotOperateDirectory}/temp`);
console.log(appendInstallationLog('Creating required directories'));
await createDirectory(`${paths.dotOperateDirectory}`);
await createDirectory(`${paths.tempDir}`);

console.log(appendInstallationLog('Checking tendermint installation'));
if (!isTendermintInstalledUnix()) {
Expand Down

0 comments on commit facc290

Please sign in to comment.