So,
I'm writing a task which preforms an FTP download. It needs to download 2 files, and should fail if it only downloads one. So in the 'on error' tab, I tell visualcron:
throw error 77777 if standard output does not contain XYZ;ABC
Will it throw if the output does not contain both? Or will it just consider the semi-colon as part of the match string? Am I better off putting that in 2 separate tasks, or can error handling perform multi-variable output checking?
Thanks!