2

Earlier I ran these commands:

bundle install --path vendor/cache

and

bundle config set path 'vendor/cache'

And now, Whenever I am doing

rails new app_name,

a folder vendor/cache (with 5K+ files) gets created inside the app_name directory.


How can I undo the above first two commands so that everything comes back to normal?

I don't want vendor/cache to be created every time I do rails new.

Eyeslandic
  • 14,553
  • 13
  • 41
  • 54
Anas Ansari
  • 143
  • 2
  • 10

1 Answers1

3

Running this should undo the damage.

bundle config unset path 

See more in the documentation

Eyeslandic
  • 14,553
  • 13
  • 41
  • 54