mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
9 lines
227 B
Bash
9 lines
227 B
Bash
|
#!/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
|