Skip to content

Commit

Permalink
also squash old conda warnings for tar_bz2
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Oct 6, 2020
1 parent bba6fb7 commit a8d9a86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21340,7 +21340,9 @@ const IGNORED_WARNINGS = [
`Unable to register environment`,
`0%|`,
// appear on certain Linux/OSX installers
`Please run using "bash"`
`Please run using "bash"`,
// old condas don't know what to do with these
`Key 'use_only_tar_bz2' is not a known primitive parameter.`
];
/**
* avoid spurious conda warnings before we have a chance to update them
Expand Down
4 changes: 3 additions & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ const IGNORED_WARNINGS = [
`Unable to register environment`,
`0%|`,
// appear on certain Linux/OSX installers
`Please run using "bash"`
`Please run using "bash"`,
// old condas don't know what to do with these
`Key 'use_only_tar_bz2' is not a known primitive parameter.`
];

/**
Expand Down

0 comments on commit a8d9a86

Please sign in to comment.