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, )