Stop Running Rules on Folder Contents (or workaround)?

So am trying to run a nightly backup of a specific folder in my Application Support directory. The problem is, there is one folder within that folder called Images, and it is huge, so I want to discard it from the backups. My Hazel rules so far run like so:
And this is where I run into the problem: I need to compress the backed-up folder (now named with the date). However, I can't run any more rules on it because I already told it to run rules on folder contents. Is there someway at the end of the "Move Images to Trash" rule that I can say 'Don't run rules on folder contents anymore'? Or can anyone see a workaround? If I could somehow exclude the images subfolder from the original copy, I could just copy, rename, and compress in one rule.
- Code: Select all
Application Support
--------------------------------
If (all):
Kind is Folder
Name is xxxxxx
Date last matched is not within last 1 day
Then:
Copy to Backups
Rename file with pattern: Date Modified
--------------------------------
Backups
--------------------------------
If:
Kind is Folder
Then:
Run rules on folder contents
--------------------------------
If (all):
Kind is Folder
Name is Images
Then:
Move to Trash
---------------------------------
And this is where I run into the problem: I need to compress the backed-up folder (now named with the date). However, I can't run any more rules on it because I already told it to run rules on folder contents. Is there someway at the end of the "Move Images to Trash" rule that I can say 'Don't run rules on folder contents anymore'? Or can anyone see a workaround? If I could somehow exclude the images subfolder from the original copy, I could just copy, rename, and compress in one rule.