From bb32e97287f7117445e64a8be2084e1bdff9dabc Mon Sep 17 00:00:00 2001 From: Connor Nemeth <100809777+bfourk@users.noreply.github.com> Date: Fri, 23 Feb 2024 18:33:31 -0500 Subject: [PATCH] Remove development tests Manually set directories to make debugging easier, reverting this. --- FileDiff/FileDiff.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FileDiff/FileDiff.cs b/FileDiff/FileDiff.cs index 0d84237..4dfbcfb 100644 --- a/FileDiff/FileDiff.cs +++ b/FileDiff/FileDiff.cs @@ -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);