devops-exercises
devops-exercises copied to clipboard
Broken PR build fix
- The PR build broke because the folder
aws s3 event triggeringcontains spaces. - The script used
findwithout quoting paths, causing shell word-splitting on spaces. - As a result, the python script tried to open
scripts/awsinstead of the full path. - Now proper quoting (and
-print0) ensures the entire path is treated as one argument, even if it has spaces.