I am new to Travis CI and I just want to understand why and what is happening here. I followed the setup instructions in my documentation as much as possible. I have:
- My Rails Code on Github
- Travis CI, which builds my repo as soon as it is transferred to the github branch master.
- Heroku application where Travis CI deploys the code if the build is successful.
I cannot understand why I get this when the build is complete:
HEAD detached from 2a3b308 Changes not staged for commit: ....... modified: script/travis.sh Untracked files: (use "git add <file>..." to include in what will be committed) vendor/bundle/ no changes added to commit (use "git add" and/or "git commit -a")
I do before_install: - chmod +x script/travis.sh in my .travis.yml and I get chmod +x script/travis.sh in my build log. I have git version 2.7.4
Why is my script/travis.sh edited? Should I add these changes or is there something wrong with my setup? In script/travis.sh , I have some minor commands that need to be run before building, setting up my Github authentication, etc.
Why is this vendor/bundle/ folder added?
source share