When I try to clone and run jHipster spring boot application using ./mvnw
command, it getting an error mvnw: Permission denied
. How can I solve it?
mvnw: Permission denied on JHipster spring boot application
Asked Answered
if you use dockerfile, you should add chmod +x mvnw
RUN chmod +x mvnw
© 2022 - 2024 — McMap. All rights reserved.
chmod +x mvnw
and try again. – Wreckful