Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix file copy logic in InnoSetupScriptBuilder#cp
- Fixed a critical bug in the InnoSetupScriptBuilder#cp method where file copies were inadvertently skipped. - Changed the condition from `return if @files.add?(source, target)` to `return unless @files.add?(source, target)` to ensure files are copied when not already present. - This change corrects the file handling logic, ensuring that new file copies are performed as intended. This bug fix resolves an issue where the addition of new files to the build process was being erroneously bypassed, leading to missing files in the output.
- Loading branch information