diff --git a/setup.py b/setup.py
index e9c955791edaf21b97f366b95f4748401214c743..253668afa4b9b9f18569681be0b8a9967c32984b 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
 
 setuptools.setup(
     name="beamer-slider",
-    version="0.1.13",
+    version="0.1.14b",
     author="Tue Herlau",
     author_email="tuhe@dtu.dk",
     description="Software to create inkscape overlays in Beamer",
diff --git a/src/jinjafy/__init__.py b/src/jinjafy/__init__.py
index 0bebe70d96db3874f2f97a22a611728675673f86..d3ff8b7ddea09cf51fea3bfdf8c3e767e7a64c1b 100644
--- a/src/jinjafy/__init__.py
+++ b/src/jinjafy/__init__.py
@@ -16,7 +16,9 @@ def execute_command(command, shell=True):
         result = subprocess.run(command, stdout=subprocess.PIPE, shell=shell)
         out = result.stdout
     else:
-        out = subprocess.check_output(command, shell=shell)
+        cmd = " ".join(command)
+        print(cmd)
+        out = subprocess.check_output(cmd, shell=shell)
     s = out.decode("utf-8")
     OK = True
     return s, OK