浏览代码

Merge pull request #1123 from ThomasWaldmann/fix-vagrant

vagrant: fix path to borg package, add hidden import
TW 9 年之前
父节点
当前提交
9452cd8263
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -241,7 +241,7 @@ def build_binary_with_pyinstaller(boxname)
     cd /vagrant/borg
     . borg-env/bin/activate
     cd borg
-    pyinstaller -F -n borg.exe --distpath=/vagrant/borg --clean borg/__main__.py
+    pyinstaller -F -n borg.exe --distpath=/vagrant/borg --clean src/borg/__main__.py --hidden-import=borg.platform.posix
   EOF
 end