Explorar el Código

vagrant: use pyinstaller from develop branch, fixes #336

it has some fixes that are not in pyinstaller 3.0 release (and not in master branch).
Thomas Waldmann hace 9 años
padre
commit
a69f7b0f59
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. 4 2
      Vagrantfile

+ 4 - 2
Vagrantfile

@@ -208,7 +208,8 @@ def install_pyinstaller(boxname)
     . borg-env/bin/activate
     git clone https://github.com/pyinstaller/pyinstaller.git
     cd pyinstaller
-    git checkout master
+    # use develop branch for now, see borgbackup issue #336
+    git checkout develop
     pip install -e .
   EOF
 end
@@ -220,7 +221,8 @@ def install_pyinstaller_bootloader(boxname)
     . borg-env/bin/activate
     git clone https://github.com/pyinstaller/pyinstaller.git
     cd pyinstaller
-    git checkout master
+    # use develop branch for now, see borgbackup issue #336
+    git checkout develop
     # build bootloader, if it is not included
     cd bootloader
     python ./waf all