From 30a5a3b0227ecc60235764ad4b0e875cf89b7b43 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sun, 9 Jun 2024 09:06:34 +0300 Subject: [PATCH] =?UTF-8?q?Update=20the=20cardsets=E2=80=99=20package=20ve?= =?UTF-8?q?rsion=20to=203.0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the latest release. --- README.md | 4 ++-- scripts/linux-install.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0fa653fe..a52e481f 100644 --- a/README.md +++ b/README.md @@ -97,10 +97,10 @@ cd PySolFC gmake test gmake rules ln -s data/images images -tar -xvf PySolFC-Cardsets-2.0.tar.bz2 # Needs to be downloaded from sourceforge +tar -xvf PySolFC-Cardsets-3.0.tar.bz2 # Needs to be downloaded from sourceforge mkdir -p ~/.PySolFC rmdir ~/.PySolFC/cardsets -ln -s "`pwd`/PySolFC-Cardsets-2.0" ~/.PySolFC/cardsets +ln -s "`pwd`/PySolFC-Cardsets-3.0" ~/.PySolFC/cardsets python pysol.py ``` diff --git a/scripts/linux-install.py b/scripts/linux-install.py index 9a6e701a..7fcea101 100755 --- a/scripts/linux-install.py +++ b/scripts/linux-install.py @@ -36,14 +36,14 @@ def main(): if not os.path.exists(dot_pysol): os.mkdir(dot_pysol) if not os.path.exists(dot_pysol_cardsets): - cardsets_dir = "PySolFC-Cardsets-2.1" + cardsets_dir = "PySolFC-Cardsets-3.0" if not os.path.exists(cardsets_dir): arc = cardsets_dir + ".tar.gz" if not os.path.exists(arc): subprocess.check_call([ "wget", "https://github.com/shlomif/" + - "PySolFC-Cardsets/archive/2.1/" + arc + "PySolFC-Cardsets/archive/3.0/" + arc ]) subprocess.check_call(["tar", "-xvf", arc]) os.symlink(os.getcwd() + "/" + cardsets_dir, dot_pysol_cardsets, )