Skip to content

Commit 8f65dda

Browse files
authored
Ignore conda cygpath warning (#362)
* Ignore conda cygpath warning * Update index files in dist
1 parent e5293c8 commit 8f65dda

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

dist/delete/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26253,6 +26253,8 @@ exports.IGNORED_WARNINGS = [
2625326253
`Key 'use_only_tar_bz2' is not a known primitive parameter.`,
2625426254
// Channel warnings are very boring and noisy
2625526255
`moving to the top`,
26256+
// This warning has no consequence for the installation and is noisy
26257+
`cygpath is not available, fallback to manual path conversion`,
2625626258
];
2625726259
/**
2625826260
* Warnings that should be errors

dist/setup/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47559,6 +47559,8 @@ exports.IGNORED_WARNINGS = [
4755947559
`Key 'use_only_tar_bz2' is not a known primitive parameter.`,
4756047560
// Channel warnings are very boring and noisy
4756147561
`moving to the top`,
47562+
// This warning has no consequence for the installation and is noisy
47563+
`cygpath is not available, fallback to manual path conversion`,
4756247564
];
4756347565
/**
4756447566
* Warnings that should be errors

src/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ export const IGNORED_WARNINGS = [
8686
`Key 'use_only_tar_bz2' is not a known primitive parameter.`,
8787
// Channel warnings are very boring and noisy
8888
`moving to the top`,
89+
// This warning has no consequence for the installation and is noisy
90+
`cygpath is not available, fallback to manual path conversion`,
8991
];
9092

9193
/**

0 commit comments

Comments
 (0)