mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 12:49:19 +00:00
7 lines
98 B
Bash
Executable File
7 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
# Pushes a new version to PyPi.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
python3 setup.py sdist upload
|