v.licheni.net
/
stack
/
conf
/
vim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4f6deab9360658e9d54a7705ecf3316c8532f84c
[stack/conf/vim.git]
/
addons
/
TagHighlight
/
dist
/
vcs_publish.sh
1
#!/bin/bash
2
3
BBUSER=abudden
4
BBPROJ=taghighlight
5
6
BITBUCKET=ssh://hg@bitbucket.org/${BBUSER}/${BBPROJ}
7
8
hg push $BITBUCKET
9
# Only fail on error, not on "no changes to push"
10
if [ $? -gt 1 ]
11
then
12
exit 255
13
fi