Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Jan 30, 2024
1 parent 73e68ed commit f52fd35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/index.js

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

4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ const pixiInstall = async () => {
if (options.environments) {
for (const environment of options.environments) {
core.debug(`Installing environment ${environment}`)
await execute(pixiCmd(`install ${environment}`))
await execute(
pixiCmd(`install -e ${environment}${options.frozen ? ' --frozen' : ''}${options.locked ? ' --locked' : ''}`)
)
}
} else {
return execute(pixiCmd(`install${options.frozen ? ' --frozen' : ''}${options.locked ? ' --locked' : ''}`))
Expand Down

0 comments on commit f52fd35

Please sign in to comment.