From 2029db17371b43e8389bb442d8fd7f284e868b00 Mon Sep 17 00:00:00 2001 From: Adison Cavani Date: Sat, 9 Oct 2021 23:39:59 +0200 Subject: [PATCH] Remove testing parameter --- src/ArchiveManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ArchiveManager.cs b/src/ArchiveManager.cs index 4c60e1b..a7443fa 100644 --- a/src/ArchiveManager.cs +++ b/src/ArchiveManager.cs @@ -12,7 +12,7 @@ namespace DistroGrubThemes }; // Add a directory tree to be included in the output TAR archive: - bool success = tar.AddDirRoot(sourceDirectory + "xxd"); + bool success = tar.AddDirRoot(sourceDirectory); if (success != true) { Console.ForegroundColor = ConsoleColor.Red;