eric sciple 5 ani în urmă
părinte
comite
19fb09ae8f
2 a modificat fișierele cu 4 adăugiri și 6 ștergeri
  1. 2 2
      dist/index.js
  2. 2 4
      src/git-source-provider.ts

+ 2 - 2
dist/index.js

@@ -5101,8 +5101,8 @@ function getSource(settings) {
             yield prepareExistingDirectory(git, settings.repositoryPath, repositoryUrl, settings.clean);
         }
         if (!git || `${1}` == '1') {
-            core.info(`Add git Git version ${gitCommandManager.MinimumGitVersion} was not found in the PATH.`);
-            core.info(`Instead downloading the repository files using the GitHub REST API.`);
+            core.info(`Downloading the repository files using the GitHub REST API`);
+            core.info(`To create a local repository instead, add Git ${gitCommandManager.MinimumGitVersion} or higher to the PATH`);
             yield githubApiHelper.downloadRepository(settings.accessToken, settings.repositoryOwner, settings.repositoryName, settings.ref, settings.commit, settings.repositoryPath);
         }
         else {

+ 2 - 4
src/git-source-provider.ts

@@ -79,11 +79,9 @@ export async function getSource(settings: ISourceSettings): Promise<void> {
   }
 
   if (!git || `${1}` == '1') {
+    core.info(`Downloading the repository files using the GitHub REST API`)
     core.info(
-      `Add git Git version ${gitCommandManager.MinimumGitVersion} was not found in the PATH.`
-    )
-    core.info(
-      `Instead downloading the repository files using the GitHub REST API.`
+      `To create a local repository instead, add Git ${gitCommandManager.MinimumGitVersion} or higher to the PATH`
     )
     await githubApiHelper.downloadRepository(
       settings.accessToken,