mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
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).
This commit is contained in:
parent
bdf7dc65bd
commit
a69f7b0f59
1 changed files with 4 additions and 2 deletions
6
Vagrantfile
vendored
6
Vagrantfile
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue