Makle plugin packer store in dir with plugin name

This commit is contained in:
Kukks
2022-05-04 09:01:17 +02:00
parent 662f269a94
commit aa89d1dffe

View File

@@ -25,7 +25,7 @@ namespace BTCPayServer.PluginPacker
}
var directory = args[0];
var name = args[1];
var outputDir = args[2];
var outputDir = Path.Combine(args[2], name);
var outputFile = Path.Combine(outputDir, name);
var rootDLLPath = Path.Combine(directory, name + ".dll");
if (!File.Exists(rootDLLPath))