Forráskód Böngészése

updating error handling

Vallie Joseph 2 éve
szülő
commit
ed4a43bf5c
2 módosított fájl, 2 hozzáadás és 2 törlés
  1. 1 1
      dist/index.js
  2. 1 1
      src/git-auth-helper.ts

+ 1 - 1
dist/index.js

@@ -7209,7 +7209,7 @@ class GitAuthHelper {
                     // eslint-disable-next-line github/no-then
                     .catch(err => {
                     // eslint-disable-next-line i18n-text/no-en
-                    core.warning(`Failed to remove temporary home directory: ${err}`);
+                    core.warning(`Failed to remove temporary checkout directory: ${err}`);
                 });
             }
         });

+ 1 - 1
src/git-auth-helper.ts

@@ -202,7 +202,7 @@ class GitAuthHelper {
         // eslint-disable-next-line github/no-then
         .catch(err => {
           // eslint-disable-next-line i18n-text/no-en
-          core.warning(`Failed to remove temporary home directory: ${err}`)
+          core.warning(`Failed to remove temporary checkout directory: ${err}`)
         })
     }
   }