mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Update the cardsets’ package version to 3.0.
This is the latest release.
This commit is contained in:
parent
90ffaeb2d1
commit
30a5a3b022
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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, )
|
||||
|
|
Loading…
Add table
Reference in a new issue