From 9f0cfb6badaa7650453fed0e9323eba1252d34a1 Mon Sep 17 00:00:00 2001 From: John Andrews Date: Mon, 11 Apr 2022 08:23:03 +1200 Subject: [PATCH] removing SetWorkingFile in copy file node as its done in nodeargs --- BasicNodes/File/CopyFile.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BasicNodes/File/CopyFile.cs b/BasicNodes/File/CopyFile.cs index c95c604d..54ce1c39 100644 --- a/BasicNodes/File/CopyFile.cs +++ b/BasicNodes/File/CopyFile.cs @@ -117,7 +117,8 @@ namespace FileFlows.BasicNodes.File } } - args?.SetWorkingFile(dest); + // not needed as args.CopyFile does this + //args?.SetWorkingFile(dest); return 1; } }