如何删除我应用于bundler的标志?这是我运行bundle install时发生的事情:
bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment
我正在寻找一个能帮我办理的答案:
bundle install
没有所有其他标志。提前谢谢。
答案 0 :(得分:0)
当您使用标记运行bundle
时,会在.bundle/config
创建一个文件,其中包含带有标记的键/值对的YAML数据。
从项目根目录(包含.bundle/
目录)运行以下命令以清除文件夹和其中包含的config
文件。
rm -r .bundle
您可以详细了解配置文件 in the docs 。