mirror of https://github.com/zulip/zulip.git
9 lines
309 B
Bash
Executable File
9 lines
309 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
cd api/
|
|
# Strip out non-send_message bindings.
|
|
perl -i.bak -ne 'print if !m/Client._register/ ||m/send_message/ ||m/get_messages/ ||m/_register.*register/ ||m/get_events/' humbug/__init__.py
|
|
python setup.py sdist
|
|
mv humbug/__init__.py.bak humbug/__init__.py
|
|
echo API tarball written to api/dist
|