Explorar el Código

Make "doit clean" work

Ryan C. Thompson hace 9 años
padre
commit
dff091dc2d
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      dodo.py

+ 2 - 0
dodo.py

@@ -51,6 +51,7 @@ def task_lyx2pdf():
             'file_dep': [lyxfile],
             'targets': [pdffile],
             'verbosity': 0,
+            'clean': True,
         }
 
 def task_readme2index():
@@ -65,6 +66,7 @@ def task_readme2index():
             'actions': [["pandoc", "-t", "html", "-o", htmlfile, mkdnfile]],
             'file_dep': [mkdnfile],
             'targets': [htmlfile],
+            'clean': True,
         }
 
 @create_after(executed='readme2index')