Signed-off-by: Ari Archer <truncateddinosour@gmail.com>
This commit is contained in:
Ari Archer 2022-02-17 00:46:51 +02:00
parent 4a1ef1bf8d
commit fadf4f6073
Signed by untrusted user who does not match committer: ari
GPG key ID: A50D5B4B599AF8A2

15
do
View file

@ -9,13 +9,9 @@ main() {
ARG=${1:-""}
case $ARG in
review)
gh pr create -f
;;
push)
isort arigram/*.py
black .
black arigram/
python3 -m poetry check
python3 -m poetry lock
@ -40,12 +36,17 @@ main() {
;;
check)
black .
black arigram/
isort arigram/*.py
chmod a+rx ./check.sh
chmod u+rx ./check.sh
./check.sh
;;
entry)
mkdir -p /usr/share/applications
cp -i arigram.desktop /usr/share/applications
;;
*)
python3 -m arigram
;;