Expoのeas build –platform ios –profile developmentで.Trashへの権限がなくてつまずく理由と対策

.Trashへの権限がないエラーの対処

エラー内容:Failed to upload the project tarball to EAS Build

Expoでdevelop buildをしようとすると、次のようなエラーが出る。

Failed to upload the project tarball to EAS Build
Reason: EPERM: operation not permitted, scandir '/Users/yourname/.Trash'
Error: build command failed.

.Trashへの読み書き権限がないというエラーだが、根本原因はそこではない。

解決方法

git initしていないことが大元の原因。

gitに接続すればこのエラーは解決する。

Terminal
$ git init
$ git add .
$ git commit -m "initial commit"

コピーしました!