Ver Fonte

pavement: Fix the ghdocs task (quoted shell glob pattern by mistake)

Ask Solem há 15 anos atrás
pai
commit
540088ec7b
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      pavement.py

+ 1 - 1
pavement.py

@@ -30,7 +30,7 @@ def ghdocs(options):
     builtdocs = sphinx_builddir(options)
     builtdocs = sphinx_builddir(options)
     sh("sphinx-to-github", cwd=builtdocs)
     sh("sphinx-to-github", cwd=builtdocs)
     sh("git checkout gh-pages && \
     sh("git checkout gh-pages && \
-            cp -r '%s/*' .    && \
+            cp -r %s/* .    && \
             git commit . -m 'Rendered documentation for Github Pages.' && \
             git commit . -m 'Rendered documentation for Github Pages.' && \
             git push origin gh-pages && \
             git push origin gh-pages && \
             git checkout master" % builtdocs)
             git checkout master" % builtdocs)