Skip to content

Commit 3fb3382

Browse files
committed
Fix path to pandoc
1 parent 6caaaae commit 3fb3382

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎setup.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ def _unpack_linux(self, filename, targetfolder):
6464
subprocess.check_call(cmd)
6565
# pandoc and pandoc-citeproc are in ./usr/bin subfolder
6666
for exe in ["pandoc", "pandoc-citeproc"]:
67-
src = os.path.join(tempfolder, "usr", "local", "bin", exe)
67+
src = os.path.join(tempfolder, "usr", "bin", exe)
6868
dst = os.path.join(targetfolder, exe)
6969
print("* Copying %s to %s ..." % (exe, targetfolder))
7070
shutil.copyfile(src, dst)
7171
src = os.path.join(tempfolder, "usr", "share", "doc", "pandoc", "copyright")
7272
dst = os.path.join(targetfolder, "copyright")
73-
print("* Copying %s to %s ..." % (exe, targetfolder))
73+
print("* Copying copyright to %s ..." % (targetfolder))
7474
shutil.copyfile(src, dst)
7575
finally:
7676
os.chdir(cur_wd)

0 commit comments

Comments
 (0)