mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-05 23:09:27 -05:00
a4f5138d41
Also create utility script for testing
12 lines
328 B
Bash
Executable File
12 lines
328 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Utility script for rebuilding and running caelestia
|
|
|
|
cd $(dirname $0) || exit
|
|
|
|
sudo rm -r dist /usr/bin/caelestia /usr/lib/python3.*/site-packages/caelestia* 2> /dev/null
|
|
python -m build --wheel --no-isolation > /dev/null
|
|
sudo python -m installer --destdir=/ dist/*.whl > /dev/null
|
|
|
|
/usr/bin/caelestia "$@"
|