FF-364 - added unzip node

This commit is contained in:
john
2022-11-17 16:53:07 +13:00
parent 92e6aa42a1
commit ef9972efe4

View File

@@ -36,7 +36,7 @@ public class Unzip : Node
{
try
{
var zip = args.ReplaceVariables(Zip ?? string.Empty, stripMissing: true)?.EmptyAsNull() ?? args.WorkingFile);
var zip = args.ReplaceVariables(Zip ?? string.Empty, stripMissing: true)?.EmptyAsNull() ?? args.WorkingFile;
if (System.IO.File.Exists(zip) == false)
{