mirror of
https://github.com/zulip/zulip.git
synced 2025-11-22 07:21:23 +00:00
The `with sh.sudo` pattern that we were using in python-sh was deprecated, and emperically hangs on Ubuntu xenial. Since in general the use of python-sh/python-pbs caused trouble (requiring extra dependencies, confusing syntax), this just removes it. We replace it with a new zulip_tools.py library function that echoes the command line and streams the output. We do the same to install-phantomjs so we can remove that dependency.
5 lines
55 B
Bash
Executable File
5 lines
55 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
python provision.py --travis
|