Copilot commented on code in PR #16253:
URL: https://github.com/apache/grails-core/pull/16253#discussion_r3883506079


##########
grails-forge/grails-forge-web-netty/build.gradle:
##########
@@ -144,11 +145,6 @@ TaskProvider<Zip> awsElasticBeanstalk = 
tasks.register('awsElasticBeanstalk', Zi
     }
     from(layout.projectDirectory.dir('aws')) {
         includeEmptyDirs = false
-        filesMatching('start.sh') {
-            filePermissions {
-                unix(0755)
-            }
-        }
     }

Review Comment:
   `awsElasticBeanstalk` zip no longer forces `aws/start.sh` to be executable. 
Gradle archive tasks typically default to non-executable file permissions in 
the produced ZIP, which can cause the Elastic Beanstalk start script to fail at 
deploy/runtime.
   
   Re-add an explicit 0755 for `start.sh` (without changing permissions for the 
rest of the `aws/` payload).



-- 
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]

Reply via email to