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`, ]; /**