diff options
| -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  | 
