flutter
make에서 작동하지 않는 문제를 디버깅하려고 합니다 .
이는 Makefile
문제를 재현하기 위해 제가 할 수 있는 최소한의 조치입니다.
fails:
flutter doctor
works:
sh -c flutter doctor
해당 출력은 다음과 같습니다.
➜ make fails
flutter --version
make: flutter: Permission denied
make: *** [Makefile:2: fails] Error 127
➜ make works
sh -c "flutter --version"
Flutter 2.2.2 • channel stable •
https://github.com/flutter/flutter.git
Framework • revision d79295af24 (7 days ago) • 2021-06-11 08:56:01
-0700
Engine • revision 91c9fc8fe0
Tools • Dart 2.13.3
또한 내 경로에서 다른 실행 파일을 실행하는 것도 관찰했습니다. 예를 들어 python
다른 go
모든 것이 잘 작동합니다.
이러한 문제를 디버깅하는 방법, 즉 권한이 거부되는 정확한 이유를 확인하고 해결하는 방법을 알고 싶습니다.
편집하다:which flutter
흥미롭게 도 다음에서 전체 경로를 실행하고 사용하면 Makefile
모든 것이 잘 작동합니다.
also-works:
which flutter
/full/path/to/bin/flutter --version
산출:
➜ make also-works
which flutter
/full/path/to/bin/flutter
/full/path/to/bin/flutter --version
Flutter 2.2.2 • channel stable •
https://github.com/flutter/flutter.git
Framework • revision d79295af24 (7 days ago) • 2021-06-11 08:56:01
-0700
Engine • revision 91c9fc8fe0
Tools • Dart 2.13.3