Skip to content

Commit

Permalink
Update the cardsets’ package version to 3.0. (#368)
Browse files Browse the repository at this point in the history
This is the latest release.
  • Loading branch information
shlomif committed Jun 9, 2024
1 parent 90ffaeb commit abd95b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions scripts/linux-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ def _make_test(make_exe):
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, )
Expand Down

0 comments on commit abd95b8

Please sign in to comment.