devops-exercises icon indicating copy to clipboard operation
devops-exercises copied to clipboard

Broken PR build fix

Open djeada opened this issue 11 months ago • 0 comments

  • The PR build broke because the folder aws s3 event triggering contains spaces.
  • The script used find without quoting paths, causing shell word-splitting on spaces.
  • As a result, the python script tried to open scripts/aws instead of the full path.
  • Now proper quoting (and -print0) ensures the entire path is treated as one argument, even if it has spaces.

djeada avatar Jan 12 '25 20:01 djeada