From a69f7b0f595e8ab6789f767967f600a12d68704b Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 2 Nov 2015 21:06:04 +0100 Subject: [PATCH] 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). --- Vagrantfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index c67394b46..02b43c91e 100644 --- a/Vagrantfile +++ b/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