]> git.lyx.org Git - features.git/commitdiff
svg2*tex.py: final fixes for Windows
authorJuergen Spitzmueller <spitz@lyx.org>
Tue, 12 Sep 2017 05:57:29 +0000 (07:57 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Tue, 12 Sep 2017 05:59:26 +0000 (07:59 +0200)
Fixes: #10679
lib/scripts/svg2pdftex.py
lib/scripts/svg2pstex.py

index 56ac22edd46bb1e824df1652cea24ed7d495dab0..c574e6a1a45292c711fc373550ee4d73cb6bc875 100644 (file)
@@ -33,8 +33,9 @@ def runCommand(cmd):
     ''' Utility function:
         run a command, quit if fails
     '''
-    if subprocess.call(cmd) != 0:
-        print "Command '%s' fails." % cmd
+    res = subprocess.check_call(cmd)
+    if res != 0:
+        print "Command '%s' fails (exit code: %i)." % (res.cmd, res.returncode)
         sys.exit(1)
 
 InkscapeCmd = "inkscape"
@@ -65,7 +66,7 @@ OutBase = os.path.splitext(OutputFile)[0]
 # while outsourcing the text to a LaTeX file ${OutBase}.pdf_tex which includes and overlays
 # the PDF image and can be \input to LaTeX files. We rename the latter file to ${OutputFile}
 # (although this is probably the name it already has).
-runCommand([InkscapeCmd, '--file=%s' % (InputFile), '--export-pdf=%s.pdf' % (OutBase), '--export-latex'])
+runCommand([r'%s' % InkscapeCmd, '--file=%s' % InputFile, '--export-pdf=%s.pdf' % OutBase, '--export-latex'])
 
 os.rename('%s.pdf_tex' % OutBase, OutputFile)
 
index 246537b6ec6fe6946c5d3a7bee71ba3e70184772..0195e26d2f5eacd4db13e22101e718072d6e0c6e 100644 (file)
@@ -36,8 +36,9 @@ def runCommand(cmd):
     ''' Utility function:
         run a command, quit if fails
     '''
-    if subprocess.call(cmd) != 0:
-        print "Command '%s' fails." % cmd
+    res = subprocess.check_call(cmd)
+    if res != 0:
+        print "Command '%s' fails (exit code: %i)." % (res.cmd, res.returncode)
         sys.exit(1)
 
 InkscapeCmd = "inkscape"
@@ -68,7 +69,7 @@ OutBase = os.path.splitext(OutputFile)[0]
 # while outsourcing the text to a LaTeX file ${OutBase}.eps_tex which includes and overlays
 # the EPS image and can be \input to LaTeX files. We rename the latter file to ${OutputFile}
 # (although this is probably the name it already has).
-runCommand([InkscapeCmd, '--file=%s' % (InputFile), '--export-eps=%s.eps' % (OutBase), '--export-latex'])
+runCommand([r'%s' % InkscapeCmd, '--file=%s' % InputFile, '--export-eps=%s.eps' % OutBase, '--export-latex'])
 
 os.rename('%s.eps_tex' % OutBase, OutputFile)