Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Dec 5, 2023
1 parent 7826c54 commit 19f4403
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/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 dist/post.js

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

2 changes: 1 addition & 1 deletion src/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const inferOptions = (inputs: Inputs): Options => {
: inputs.initShell.includes('none')
? []
: (inputs.initShell as ShellType[])
const downloadMicromamba = inputs.downloadMicromamba || true
const downloadMicromamba = inputs.downloadMicromamba !== undefined ? inputs.downloadMicromamba : true
const micromambaBinPath = inputs.micromambaBinPath
? path.resolve(untildify(inputs.micromambaBinPath))
: PATHS.micromambaBin
Expand Down

0 comments on commit 19f4403

Please sign in to comment.