We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27704f commit 5abeb16Copy full SHA for 5abeb16
make
@@ -96,13 +96,16 @@ def merge_pages():
96
print 'Files copied sucessfully'
97
98
print 'Switching to gh-pages...'
99
- git = subprocess.Popen(['git', 'checkout gh-pages'],
+ git = subprocess.Popen(['git', 'checkout', 'gh-pages'],
100
stdout=subprocess.PIPE)
101
102
+ git = subprocess.Popen(['git', 'branch'], stdout=subprocess.PIPE)
103
+ print git.communicate()
104
+ return 1
105
status = merge_git()
106
107
print 'Returning to master...'
- git = subprocess.Popen(['git', 'checkout master'],
108
+ git = subprocess.Popen(['git', 'checkout', 'master'],
109
110
111
if git.communicate()[0].strip() == 'Aborting':
0 commit comments