After the last line, git aborts the pull process as there is a conflict in the LICENSE file. (the Carla zip also includes a LICENSE file with the same name)
The current workaround that I use is to add a simple rename command after the tar extraction and before git init like this
Thanks for poinint this out! I made the instructions before adding the license file and I forgot to address that. Do you mind creating a PR with your fix above?
In the instructions mentioned in the README and in the quickstart.sh, we first extract the Carla tarball and then clone this repository over that.
When we do this,
After the last line, git aborts the pull process as there is a conflict in the LICENSE file. (the Carla zip also includes a LICENSE file with the same name)
The current workaround that I use is to add a simple rename command after the tar extraction and before
git init
like thisAfter this the git pull seems to work properly.