I recently updated my local CircleCI CLI and it’s currently at:
circleci version: 0.0.5609-e7533b7
Build Agent version: 0.0.5610-e7533b7
When I ran circleci build, it fails during checkout with these messages:
====>> Checkout code
#!/bin/sh
mkdir -p /home/circleci/MY_PROJECT && cp -r /tmp/_circleci_local_build_repo/. /home/circleci/MY_PROJECT
cp: cannot stat '/tmp/_circleci_local_build_repo/.': No such file or directory
Error: Exited with code 1
Step failed
Task failed
I have tried making the ‘/tmp/_circleci_local_build_repo’ directory, but checkout still failed. Does anybody have an idea of what could be going wrong?
Thanks!