Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
This ordering of stats makes a bit more sense.
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Mar 19, 2022
1 parent d0f927f commit 3cc9f2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Squirrel/Internal/DeltaPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ void createDeltaForSingleFile(FileInfo targetFile, DirectoryInfo workingDirector
continue;
}

this.Log().Info($"Processed {processed}/{newLibFiles.Length} files. {fChanged} patched, {fNew} new, {fSame} unchanged.");
this.Log().Info($"Processed {processed}/{newLibFiles.Length} files. {fChanged} patched, {fSame} unchanged, {fNew} new.");
prevCount = processed;
}

Expand All @@ -180,7 +180,7 @@ void createDeltaForSingleFile(FileInfo targetFile, DirectoryInfo workingDirector
EasyZip.CreateZipFromDirectory(outputFile, tempInfo.FullName);

this.Log().Info($"Successfully created delta package for {basePackage.Version} -> {newPackage.Version}.");
this.Log().Info($"{newLibFiles.Length} files processed. {fChanged} patched, {fNew} new, {fSame} unchanged, {baseLibFiles.Count} removed.");
this.Log().Info($"{newLibFiles.Length} files processed. {fChanged} patched, {fSame} unchanged, {fNew} new, {baseLibFiles.Count} removed.");
}

return new ReleasePackage(outputFile);
Expand Down

0 comments on commit 3cc9f2b

Please sign in to comment.