From 8f65dda9671afc08d384e37681333ed70e2d5306 Mon Sep 17 00:00:00 2001 From: Marco Esters Date: Sat, 28 Sep 2024 03:45:23 -0700 Subject: [PATCH] Ignore conda cygpath warning (#362) * Ignore conda cygpath warning * Update index files in dist --- dist/delete/index.js | 2 ++ dist/setup/index.js | 2 ++ src/constants.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/dist/delete/index.js b/dist/delete/index.js index 8de84e77..4dbd3cba 100644 --- a/dist/delete/index.js +++ b/dist/delete/index.js @@ -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 diff --git a/dist/setup/index.js b/dist/setup/index.js index 77635470..4f209440 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -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 diff --git a/src/constants.ts b/src/constants.ts index 9d9c281a..cda1f47e 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -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`, ]; /**