Why doesn't the 'bundle install --without production' command not require '--without production' after update?

前端 未结 2 2154
栀梦
栀梦 2021-02-13 12:43

Why doesn\'t the second command of

$ bundle install

not need

--without production

(As this is how it went i

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-13 13:25

    I believe it's because bundler creates a .bundle/config file inside your project's folder. This file stores the --without production option for later execution so that you don't have to type it every time.

提交回复
热议问题