bito-code-review[bot] commented on PR #16253:
URL: https://github.com/apache/grails-core/pull/16253#issuecomment-5456960304
<!-- Bito Reply -->
To re-add the explicit 0755 permission for `start.sh` in the
`awsElasticBeanstalk` task, you should restore the `filesMatching` block within
the `from` configuration. Here is the corrected code snippet for
`grails-forge/grails-forge-web-netty/build.gradle`:
```gradle
from(layout.projectDirectory.dir('aws')) {
includeEmptyDirs = false
filesMatching('start.sh') {
filePermissions {
unix(0755)
}
}
}
```
**grails-forge/grails-forge-web-netty/build.gradle**
```
from(layout.projectDirectory.dir('aws')) {
includeEmptyDirs = false
filesMatching('start.sh') {
filePermissions {
unix(0755)
}
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]