Skip to content

Commit

Permalink
Remove development tests
Browse files Browse the repository at this point in the history
Manually set directories to make debugging easier, reverting this.
  • Loading branch information
bfourk committed Feb 23, 2024
1 parent b2e1089 commit bb32e97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FileDiff/FileDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public static void Main(string[] args)
{
Stopwatch sw = new Stopwatch(); // For calculating the total time
Console.Write("Input Directory 1: ");
string? MainDirectory = "/tmp/ramdisk/tmp1";//Console.ReadLine();
string? MainDirectory = Console.ReadLine();
Console.Write("\nInput Directory 2: ");
string? SyncDirectory = "/tmp/ramdisk/tmp2";//Console.ReadLine();
string? SyncDirectory = Console.ReadLine();
if (MainDirectory == null || SyncDirectory == null)
{
Environment.Exit(1);
Expand Down

0 comments on commit bb32e97

Please sign in to comment.