Skip to content

Commit

Permalink
Correct binPath
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Jan 15, 2022
1 parent 1fe807e commit ca7e868
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ function getDownloadObject (version) {
const platform = os.platform()
const filename = `foundry_${version}_${platform}_${mapArch(os.arch())}`
const extension = platform === 'win32' ? 'zip' : 'tar.gz'
const binPath = platform === 'win32' ? 'bin' : path.join(filename, 'bin')
const url = `https://github.com/gakonst/foundry/releases/download/${version}/${filename}.${extension}`

return {
url,
binPath
binPath: '.'
}
}

Expand Down

0 comments on commit ca7e868

Please sign in to comment.