Browse Source

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

Ask Solem 15 years ago
parent
commit
540088ec7b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pavement.py

+ 1 - 1
pavement.py

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