diff options
author | vg <vgm+dev@devys.org> | 2022-09-18 20:23:17 +0200 |
---|---|---|
committer | vg <vgm+dev@devys.org> | 2022-09-18 20:23:17 +0200 |
commit | 21908c97c1e897554751070d08e2b35694529bc0 (patch) | |
tree | 7435287f77e165a343134a152a1b8ff2b0f964ee /Makefile | |
parent | f02ba5ad748b9cbad129274aecb5b26d3ce3a2ba (diff) | |
download | gamechest-21908c97c1e897554751070d08e2b35694529bc0.tar.gz gamechest-21908c97c1e897554751070d08e2b35694529bc0.tar.bz2 gamechest-21908c97c1e897554751070d08e2b35694529bc0.zip |
git-sync on seele
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ static-fix: isort --order-by-type --atomic gamechestcli +zipapp: + mkdir /tmp/gamechest.zipapp + pip3 install --target /tmp/gamechest.zipapp -r gamechestcli/requirements.txt + #pip3 install --target /tmp/gamechest.zipapp gamechestcli + 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 |