Skip to content

Commit 6741249

Browse files
author
Fatih BAKIR
committed
fixed
1 parent 6665494 commit 6741249

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Source/UnityPack/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ private static void CreateTarGZ(string tgzFilename, string sourceDirectory)
142142
private static void AddDirectoryFilesToTar(TarArchive tarArchive, string sourceDirectory, bool recurse)
143143
{
144144
TarEntry tarEntry = TarEntry.CreateEntryFromFile(sourceDirectory);
145-
tarEntry.Name = sourceDirectory.Remove(0, tarArchive.RootPath.Length + 1);
146-
tarArchive.WriteEntry(tarEntry, false);
145+
//tarEntry.Name = sourceDirectory.Remove(0, tarArchive.RootPath.Length + 1);
146+
//tarArchive.WriteEntry(tarEntry, false);
147147

148148
string[] filenames = Directory.GetFiles(sourceDirectory);
149149
foreach (string filename in filenames)
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)