[ Trouble Shooting ] .gradlew: command not found

slowcurve·2022년 11월 29일
0

Trouble Shooting

목록 보기
2/6

🔒 Problem

.gradlew: command not found
Github Action 으로 CI/CD 구축 중 gradle build시 에러 발생


🔓 Solve

gradlew 파일에게 실행권한을 부여하여 해결
-rw-rw-r-- -> -rwxrwxr-x 로 권한 변경

chmod +x gradlew 

🔐 Cause

Window 기반 개발자들이 자주 접할 수 있는 문제입니다.
Window 에서 파일을 생성하면 기본적으로 파일 권한이 644(읽기/쓰기, 읽기, 읽기)로 생성되기 때문에, buildclean 작업 실행 권한이 존재하지 않습니다.

0개의 댓글