From cb04bd6a83b5588017b8579ada39d6e00f09fb30 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Wed, 12 Feb 2014 12:58:02 +0200 Subject: [PATCH] Add '--all' flag to placify newer versions of git --- doc/gh-pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/gh-pages.py b/doc/gh-pages.py index 8fe4ee01..75c8d9e3 100644 --- a/doc/gh-pages.py +++ b/doc/gh-pages.py @@ -125,7 +125,7 @@ if __name__ == '__main__': sh("touch .nojekyll") sh('git add .nojekyll') sh('git add index.html') - sh('git add %s' % tag) + sh('git add --all %s' % tag) sh2('git commit -m"Updated doc release: %s"' % tag) print('Most recent commit:')