mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-22 07:17:31 +08:00
12 lines
317 B
Bash
Executable file
Vendored
12 lines
317 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
version=`DJANGO_SETTINGS_MODULE=weblate.settings_example python -c 'import weblate; print weblate.VERSION' | sed 's/-dev//'`
|
|
|
|
# Download server
|
|
scp dist/Weblate-$version.tar.* web:/srv/http/dl.cihar.com/weblate/
|
|
|
|
# PyPi archive
|
|
./setup.py register
|
|
./setup.py sdist --formats bztar,gztar,zip upload
|