8
0
Piotrek Koszuliński 6 лет назад
Родитель
Сommit
994da6e0b0
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      scripts/update-stable-branches.sh

+ 2 - 2
scripts/update-stable-branches.sh

@@ -14,10 +14,10 @@ then
 	git checkout stable && git merge master && git checkout master
 
 	# Add `#stable` branches in all repos which don't have them yet.
-	mgit exec 'git checkout -b stable 2> /dev/null && git push origin stable && git checkout master'
+	mrgit exec 'git checkout -b stable 2> /dev/null && git push origin stable && git checkout master'
 
 	# Update all `#stable` branches in all packages.
-	mgit exec 'git checkout stable && git pull origin stable && git merge master && git checkout master'
+	mrgit exec 'git checkout stable && git pull origin stable && git merge master && git checkout master'
 
 	# Push the `#stable` branches.
 	git push origin stable master && \