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"
コピーしました!