当我运行" vagrant ssh -c命令"时,为什么vagrant会生成一些垃圾文件?脚本使用npm run?

时间:2015-12-20 13:06:24

标签: npm vagrant vagrantfile

这是我的package.jsonVagrantfile

的package.json

{
  "name": "vagrant-test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "hello": "vagrant ssh -c 'echo 1'"
  },
  "author": "",
  "license": "MIT"
}

Vagrantfile

Vagrant.configure(2) do |config|
  config.vm.box = "bento/centos-7.1"
end

当我npm run hello时,vagrant会生成一些垃圾文件,如下所示:

enter image description here

我该如何解决这个问题?

0 个答案:

没有答案