mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-25 06:06:21 +03:00
11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BRANCH=$1
|
|
COMPOUND_VERSION=$2
|
|
|
|
cp build/Release/appcast* .
|
|
|
|
echo "### Commiting and pushing appcast"
|
|
git commit -am "Bump appcast to ${COMPOUND_VERSION}"
|
|
git push origin HEAD:"${BRANCH}"
|