removed all but vam submodule to let autoinstall work
[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