Skip to content

Commit

Permalink
Merged release/1.1.0 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ASPePeX committed Oct 10, 2016
2 parents a350a6f + 0ea4253 commit 23cc7e5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Program.cs
Expand Up @@ -14,6 +14,7 @@ namespace USB_Filler
internal class Program
{
private static readonly List<string> DrivesToCopyTo = new List<string>();
private static int _repeatCounter = 0;

private static void Main(string[] args)
{
Expand All @@ -26,6 +27,10 @@ private static void Main(string[] args)
do
{
MainLoop(options);

_repeatCounter++;

Console.WriteLine("\nThis was run {0} with {1} drives each, you should be at {2} drives total.\n", _repeatCounter, options.Drives, _repeatCounter*options.Drives);
Console.WriteLine("\nHit Enter for another run, Ctrl+C to exit.\n");

while (Console.KeyAvailable)
Expand Down

0 comments on commit 23cc7e5

Please sign in to comment.