Skip to content

Commit dfbd47b

Browse files
committed
This should finally work...
1 parent 32d2cd5 commit dfbd47b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

make

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,13 @@ def merge_git():
138138
shutil.copytree('build/js', 'js')
139139
shutil.copyfile('build/index.html', 'index.html')
140140
shutil.rmtree('build')
141+
142+
subprocess.Popen(['git', 'add', '-A'],
143+
stdout=subprocess.PIPE).communicate()
144+
145+
subprocess.Popen(['git', 'commit', '-m', 'Automatic merge from master.'],
146+
stdout=subprocess.PIPE).communicate()
147+
141148
return 0
142149

143150
else:

0 commit comments

Comments
 (0)