private bool Verify()

in src/Artifacts/Tasks/Robocopy.cs [278:291]


        private bool Verify(FileInfo file, bool shouldExist, bool verifyExists)
        {
            if (!shouldExist || FileSystem.FileExists(file))
            {
                return true;
            }

            if (verifyExists)
            {
                Log.LogError("Copy failed - file does not exist [{0}]", file.FullName);
            }

            return false;
        }