如何阻止 rails new 创建 vendor/cache 文件夹?
How to stop rails new from creating vendor/cache folder?
之前我运行这些命令:
bundle install --path vendor/cache
和
bundle config set path 'vendor/cache'
而现在,
每当我在做
rails new app_name
,
在 app_name
目录中创建了一个文件夹 vendor/cache
(包含 5K+ 个文件)。
如何撤销上面的前两个命令,使一切恢复正常?
我不希望每次 rails new
时都创建 vendor/cache
。
运行 这应该可以消除损坏。
bundle config unset path
中查看更多内容
之前我运行这些命令:
bundle install --path vendor/cache
和
bundle config set path 'vendor/cache'
而现在, 每当我在做
rails new app_name
,
在 app_name
目录中创建了一个文件夹 vendor/cache
(包含 5K+ 个文件)。
如何撤销上面的前两个命令,使一切恢复正常?
我不希望每次 rails new
时都创建 vendor/cache
。
运行 这应该可以消除损坏。
bundle config unset path
中查看更多内容