Skip to content

Commit

Permalink
fix linux path
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 authored Oct 17, 2024
1 parent aaa45b6 commit 01117f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/remixdesktop/src/tools/circom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function getInstallationPath(version) {
return path.join(app.getAppPath(), 'circom-download', version, 'circom-macos-amd64')

case 'linux':
return path.join(app.getAppPath(), 'circom-download', version, 'circom-linux-amd64')
return path.join(app.getPath('temp'), 'circom-download', version, 'circom-linux-amd64')
}
}

Expand All @@ -70,7 +70,7 @@ export function getLogInputSignalsPath() {
return path.join(app.getAppPath(), 'log_input_signals.txt')

case 'linux':
return path.join(app.getAppPath(), 'log_input_signals.txt')
return path.join(app.getPath('temp'), 'log_input_signals.txt')
}
}

Expand Down

0 comments on commit 01117f1

Please sign in to comment.