Skip to content

Commit

Permalink
explicit true
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Sep 28, 2024
1 parent 2bce0f8 commit fc9f189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export async function applyCondaConfiguration(
await condaCommand(["config", "--add", "channels", channel], options);
}

if (inputs.noImplicitChannels && !channels.includes("defaults")) {
if (inputs.noImplicitChannels === "true" && !channels.includes("defaults")) {
core.info("Removing implicitly added 'defaults' channel");
try {
await condaCommand(
Expand Down

0 comments on commit fc9f189

Please sign in to comment.