Support VERSION_REVTYPE git builds on cleanup_checkout.sh
[freeciv.git] / win32 / installer / cleanup_checkout.sh
blob252f41075ff278bc85a650d7aa993b87017a8d59
1 #!/bin/sh
3 if test "x$VERSION_REVTYPE" = "xgit" ; then
4 git checkout $1/translations
5 elif test "x$VERSION_REVTYPE" = "xsvn" ; then
6 cd $1/translations
7 svn revert -R .
8 fi