resource-asm: add ASM plugin to build.
[profile/ivi/murphy.git] / githooks / post-rewrite
1 #!/bin/sh
2
3 gittop=$(while [ ! -d .git -a $(pwd) != "/" ]; do cd ..; done; echo $(pwd))
4
5 if [ -f $gittop/.rebase-branch-name ]; then
6     rm -f $gittop/.rebase-branch-name
7     echo "Removed saved branch name file..."
8 fi
9
10 exit 0