Skip to content

Commit

Permalink
Ignore conda cygpath warning (#362)
Browse files Browse the repository at this point in the history
* Ignore conda cygpath warning

* Update index files in dist
  • Loading branch information
marcoesters authored Sep 28, 2024
1 parent e5293c8 commit 8f65dda
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/delete/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26253,6 +26253,8 @@ exports.IGNORED_WARNINGS = [
`Key 'use_only_tar_bz2' is not a known primitive parameter.`,
// Channel warnings are very boring and noisy
`moving to the top`,
// This warning has no consequence for the installation and is noisy
`cygpath is not available, fallback to manual path conversion`,
];
/**
* Warnings that should be errors
Expand Down
2 changes: 2 additions & 0 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47559,6 +47559,8 @@ exports.IGNORED_WARNINGS = [
`Key 'use_only_tar_bz2' is not a known primitive parameter.`,
// Channel warnings are very boring and noisy
`moving to the top`,
// This warning has no consequence for the installation and is noisy
`cygpath is not available, fallback to manual path conversion`,
];
/**
* Warnings that should be errors
Expand Down
2 changes: 2 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ export const IGNORED_WARNINGS = [
`Key 'use_only_tar_bz2' is not a known primitive parameter.`,
// Channel warnings are very boring and noisy
`moving to the top`,
// This warning has no consequence for the installation and is noisy
`cygpath is not available, fallback to manual path conversion`,
];

/**
Expand Down

0 comments on commit 8f65dda

Please sign in to comment.