Skip to content

Commit

Permalink
Add missing "requests" dependency to build_release.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
timsueberkrueb committed Mar 3, 2018
1 parent 30fac16 commit 44827fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/build_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def _build_release(release_version: str):
'apt-get', '-y', 'install', 'python3', 'python3-pip'])
# Install ubup dependencies as well as pyinstaller
subprocess.check_call(['lxc', 'exec', container_name, '--',
'pip3', 'install', 'click', 'ruamel.yaml', 'schema', 'progressbar2', 'pyinstaller'])
'pip3', 'install', 'click', 'ruamel.yaml', 'schema', 'progressbar2', 'pyinstaller',
'requests'])
# Make a release build
subprocess.check_call(['lxc', 'exec', container_name, '--', 'bash', '-c',
'cd /root/ubup && pyinstaller -F -n ubup main.py'])
Expand Down

0 comments on commit 44827fb

Please sign in to comment.