Skip to content

Commit

Permalink
Fix await (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Jul 7, 2022
1 parent d90963f commit e198969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -223,7 +223,7 @@ async function downloadMicromamba (micromambaUrl) {
}
await executeSubproc('tar', [
'-xjf', useWindowsTar ? tarPath : await cygpath(tarBz2Path),
'-C', useWindowsTar ? PATHS.micromambaBinFolder : cygpath(PATHS.micromambaBinFolder),
'-C', useWindowsTar ? PATHS.micromambaBinFolder : await cygpath(PATHS.micromambaBinFolder),
'--strip-components=2', 'Library/bin/micromamba.exe'
])
})
Expand Down

0 comments on commit e198969

Please sign in to comment.