Page MenuHomePhabricator

bundle install creates .bundle/install.log file in qa/browsertests
Closed, InvalidPublic

Description

Intention:
Was trying to make changes to qa/browsertests and commit it. But when I did git status I got a untracked folder .bundle/

Steps to Reproduce:

  1. git clone https://gerrit.wikimedia.org/r/qa/browsertests
  2. cd tests/browser
  3. bundle install

Actual Results:
It creates a .bundle/install.log file

Expected Results:
Nothing to happen or if it so happens it should have been ignored, when git status is run

Reproducible: Always

.bundle should be added in .gitignore


Version: wmf-deployment
Severity: enhancement

Details

Reference
bz62155

Event Timeline

bzimport raised the priority of this task from to Needs Triage.Nov 22 2014, 2:53 AM
bzimport set Reference to bz62155.
bzimport added a subscriber: Unknown Object (MLST).

I am not aware that we create a .bundle directory in any other repo e.g. MobileFrontend. There is nothing valuable in the .bundle repo, probably best not to create it at all

Vikas, I think this is caused by an old version of bundler. This should fix the problem:

gem update bundler

I am closing the bug as invalid, please reopen if updating bundler does not fix the problem.

Thank you Zeljko, updating bundler fixed it.