1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

fix os.symlink() args order

This commit is contained in:
Shlomi Fish 2021-08-30 09:44:54 +03:00
parent 441c6718fb
commit a86bb4f222

View file

@ -41,7 +41,7 @@ def main():
"https://github.com/shlomif/" +
"PySolFC-Cardsets/archive/2.0/" + arc])
subprocess.check_call(["tar", "-xvf", arc])
os.symlink(dot_pysol_cardsets, os.getcwd() + "/" + cardsets_dir)
os.symlink(os.getcwd() + "/" + cardsets_dir, dot_pysol_cardsets, )
main()