diff options
author | vg <vgm+dev@devys.org> | 2024-03-04 22:15:28 +0100 |
---|---|---|
committer | vg <vgm+dev@devys.org> | 2024-03-04 22:15:28 +0100 |
commit | 3a663b7b4b8f82740c58eadf003a0c7e3e08ec26 (patch) | |
tree | 8db0450b13207f880122d5140285441f85ed5b22 /Makefile | |
parent | a5ea73aa61b23b7ee2befcd8811c64b9e39354bf (diff) | |
download | gamechest-3a663b7b4b8f82740c58eadf003a0c7e3e08ec26.tar.gz gamechest-3a663b7b4b8f82740c58eadf003a0c7e3e08ec26.tar.bz2 gamechest-3a663b7b4b8f82740c58eadf003a0c7e3e08ec26.zip |
git-sync on dita
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ all: zipapp make -C pygame deploy - if [ -e ~/games/.saves ]; then cp ./gamechesttui ~/games/.saves/tools/bin/. ; elif [ -e ~/game-saves ]; then cp ./gamechesttui ~/game-saves/tools/bin/. ; fi + if [ -e ~/syncthing/gamesaves/ ]; then cp ./gamechesttui ~/syncthing/gamesaves/tools/bin/. ; elif [ -e ~/game-saves ]; then cp ./gamechesttui ~/game-saves/tools/bin/. ; fi static-fix: isort --order-by-type --atomic gamechestcli @@ -12,4 +12,4 @@ zipapp: rsync -Pa gamechestcli/. /tmp/gamechest.zipapp/. python3 -m zipapp -p "/usr/bin/env python3" /tmp/gamechest.zipapp rm -r /tmp/gamechest.zipapp - if [ -e ~/games/.saves ]; then mv /tmp/gamechest.pyz ~/games/.saves/tools/bin/. ; elif [ -e ~/game-saves ]; then mv /tmp/gamechest.pyz ~/game-saves/tools/bin/. ; fi + if [ -e ~/syncthing/gamesaves ]; then mv /tmp/gamechest.pyz ~/syncthing/gamesaves/tools/bin/. ; elif [ -e ~/game-saves ]; then mv /tmp/gamechest.pyz ~/game-saves/tools/bin/. ; fi |