EEYatHo 앱 깎는 이야기

flutterfire: command not found 본문

Flutter/Error

flutterfire: command not found

EEYatHo 2024. 12. 6. 13:24
반응형

 

에러 현상


빌드시 에러 발생

 

  • Flutter 빌드시 Debug Console 에러 로그
Error (Xcode): ../../.pub-cache/git/{개인라이브러리이름}-a19e32840efbb0a62ca7cb070355bc9708e124f8/lib/atoms/text/text.dart:2:8: Error: Error when reading '../../.pub-cache/git/{개인라이브러리이름}-a19e32840efbb0a62ca7cb070355bc9708e124f8/lib/colors.dart': No such file or directory
Launching lib/main.dart on iPhone 15 in debug mode... Xcode build done. 58.7s Failed to build iOS app Error output from Xcode build: ↳ --- xcodebuild: WARNING: Using the first of multiple matching destinations: 2 { platform:iOS Simulator, id:3087CA21-6DF4-4FE1-A150-6835F5A8AC84, OS:17.4, name:iPhone 15 } ** BUILD FAILED ** 2
 
 
  • Xcode 클린 후 빌드했을 때 에러
Command PhaseScriptExecution failed with a nonzero exit code
 
 

 

해결 방법


  1. iOS, Flutter 관련 모든 캐시 clean해도 무용지물..
  2. 아래 스크립트로 빌드 상세로그를 노출한 후, GPT에게 분석 요청
flutter run --verbose

3. GPT가 엄청나게 긴 로그에서 아래 로그를 발견 (기특)

{Xcode경로}/DerivedData/Runner-fnbsylkqjdllfkasamidrdoqpwjw/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Ru nner.build/Script-295586BF5612ACFF97700ADB.sh: line 5: flutterfire: command not found Command PhaseScriptExecution failed with a nonzero exit code

4. flutterfire_cli 다시 설치해서 해결

dart pub global activage flutterfire_cli

왜 지워져있던건지는.. 미지수..

저게 문제인제 왜 Flutter, Xcode에서는 에러가 명확하게 노출되지 않는지도 미지수..

Comments