Merge branch 'x/gorm' into x/sqlx

r/paopao-ce-plus
Michael Li 1 year ago
commit 65e65d6fc8
No known key found for this signature in database

@ -14,22 +14,30 @@ function push {
echo "git push bitbus $1:$1"
git push bitbus $1:$1
else
push dev
push r/paopao-ce
push r/paopao-ce-plus
push r/paopao-ce-pro
push r/paopao-ce-xtra
push_all dev r/paopao-ce r/paopao-ce-plus r/paopao-ce-pro r/paopao-ce-xtra
fi
}
function push_all {
if [ $# -eq 0 ]; then
push
else
while [ $# -gt 0 ]; do
push $1
shift
done
fi
}
case $1 in
"push")
push $2
shift
push_all $@
;;
"merge")
echo "merge command"
;;
*)
push $2
push_all
;;
esac
Loading…
Cancel
Save