Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VAGRANT_CWD 的默认值是多少?我将它设置为其他东西,现在我需要“重置”它。我尝试取消设置,但这不起作用,因为它返回一个错误,指出工作目录是 ~/. (无效的)。
不应首先设置它 - 如果您在环境中设置了此值,请确保将其从设置位置中删除。
默认值为当前目录(Dir.pwd在 ruby 中)。如果您设置了变量,您可以尝试将当前目录定义为默认文件夹
Dir.pwd
export VAGRANT_CWD="./"
这将.vagrant在您运行命令的当前目录中创建目录以及 Vagrantfile
.vagrant