Skip to content

Commit

Permalink
Ikkoku/MergeGitDiff: warning when not find target files
Browse files Browse the repository at this point in the history
  • Loading branch information
MIRIMIRIM committed Jun 24, 2024
1 parent f20b684 commit d50fe7d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Ikkoku/src/SubtileProcess/MergeGitDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ public static void MergeGitDiffToCht(string repoLocalPath, string startCommitId,

if (!File.Exists(targetFileFull))
{
throw new Exception("Please check " + targetSuffix + ", not found " + targetFileFull);
Console.WriteLine("Warning: not found " + targetFile);
//throw new Exception("Please check " + targetSuffix + ", not found " + targetFileFull);
continue;
}

if (CompareLinesNumber(sourceFileFull, targetFileFull) != 0)
Expand Down

0 comments on commit d50fe7d

Please sign in to comment.