mirror of https://github.com/watcha-fr/synapse
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
227 B
9 lines
227 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# replaces the dependency on Twisted in `python_dependencies` with trunk.
|
||
|
|
||
|
set -e
|
||
|
cd "$(dirname "$0")"/..
|
||
|
|
||
|
sed -i -e 's#"Twisted.*"#"Twisted @ git+https://github.com/twisted/twisted"#' synapse/python_dependencies.py
|