Skip to content

Commit

Permalink
Correct Docker path on Linux and bump Solana version (#40)
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Dowideit <[email protected]>
  • Loading branch information
SvenDowideit authored Mar 13, 2022
1 parent f844773 commit b7a571b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import { logger } from './logger';
const DOCKER_IMAGE =
process.arch === 'arm64'
? 'nathanleclaire/solana:v1.9.2'
: 'solanalabs/solana:v1.9.2';
: 'solanalabs/solana:v1.9.11';
let DOCKER_PATH = 'docker';
if (process.platform !== 'win32') {
if (process.platform === 'darwin') {
DOCKER_PATH = '/usr/local/bin/docker';
}

Expand Down

0 comments on commit b7a571b

Please sign in to comment.