mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 14:04:12 +01:00
Makle plugin packer store in dir with plugin name
This commit is contained in:
parent
662f269a94
commit
aa89d1dffe
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue