Advertisement
Nrejve

Mermaid JS

Jun 28th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. graph TB
  2. A[Start] --> B(Checking Primary Site)
  3. B --> C{Primary Site Found?}
  4. C -->|Yes| D[Copy File to SFTP]
  5. C -->|No| E[Script ran failed]
  6. D --> F{File found?}
  7. F -->|Yes|G(Move file to archive)
  8. F -->|No|E
  9. G --> H{Move Success?}
  10. H -->|Yes|I(Send copy done mail)
  11. H -->|No|E
  12. I --> J[End]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement