Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Misaka-ZeroTwo committed Nov 14, 2023
1 parent 648d7e1 commit ded0193
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions EXILED-DLL-Archiver/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public static void Main(String[] args)
string nw_plugin_deps_path = Path.Combine(nw_plugin_path, "dependencies");

List<string> plugins = new List<string> { "Exiled.CreditTags", "Exiled.CustomItems", "Exiled.CustomRoles", "Exiled.Events", "Exiled.Permissions", };
List<string> pluginsDep = new List<string> { "0Harmony", "Exiled.API", "SemanticVersioning", "Mono.Posix", "System.ComponentModel.DataAnnotations" };
List<string> nwDep = new List<string> { "Exiled.API", "SemanticVersioning" };
List<string> pluginsDep = new List<string> { "0Harmony", "Exiled.API", "SemanticVersioning", "System.ComponentModel.DataAnnotations" };
List<string> nwDep = new List<string> { "Exiled.API", "SemanticVersioning", "Mono.Posix" };

try
{
Expand Down Expand Up @@ -63,7 +63,7 @@ public static void Main(String[] args)
Console.WriteLine("Missing dll: " + e.Message);
Console.WriteLine("Mono.Posix and System.ComponentModel.DataAnnotations need to be manually added if missing");
Console.ReadLine();
Environment.Exit(0);
return;
}

CreateTarGZ(Path.Combine(path, "Exiled.tar.gz"), path);
Expand All @@ -72,7 +72,7 @@ public static void Main(String[] args)
{
Console.WriteLine(ex);
Console.ReadLine();
Environment.Exit(0);
return;
}

}
Expand Down

0 comments on commit ded0193

Please sign in to comment.