créer VERSION.txt et CHANGES.txt à la racine du projet

This commit is contained in:
Jephté Clain 2015-09-08 10:14:13 +04:00
parent 9d8a74791e
commit 47b6e5b359
1 changed files with 9 additions and 1 deletions

10
prel
View File

@ -278,6 +278,7 @@ if [ "$action" == checkout ]; then
git_ensure_cleancheckout
is_any_branch "$release" master release || die "$release: ce n'est pas une branche de release"
r=0
newbranch=
if git_have_branch "$release"; then
git checkout "$release"; r=$?
elif git_have_rbranch "$release"; then
@ -288,6 +289,7 @@ Vous allez créer la nouvelle branche de release ${COULEUR_VERTE}$release${COULE
à partir de la branche source ${COULEUR_BLEUE}$source${COULEUR_NORMALE}"
ask_yesno "Voulez-vous continuer?" O || die
newbranch=1
git_ensure_branch "$release" "$source" "$origin"
[ $? -eq 2 ] && die "Impossible de créer la branche $release. Veuillez vérifier que la branche $source existe"
git checkout "$release"; r=$?
@ -298,6 +300,10 @@ Vous allez créer la nouvelle branche de release ${COULEUR_VERTE}$release${COULE
fi
if [ "$r" -eq 0 -a -n "$write" ]; then
set cwd=pwd
setx workdir=git rev-parse --show-toplevel
[ -d "$workdir" ] && cd "$workdir"
commitmsg="Init changelog"
if [ -n "$newver" ]; then
pver -uv "$newver" && commitmsg="Init changelog & version $newver"
@ -330,6 +336,8 @@ $modifs"
git add -A
git commit -m "$commitmsg"
cd "$cwd"
fi
fi
if [ "$r" -eq 0 ]; then
@ -342,7 +350,7 @@ $modifs"
# mettre à jour la branche sur laquelle on se trouve
setx branch=git_get_branch
action=merge
elif [ "$r" -eq 0 ]; then
elif [ "$r" -eq 0 -a -n "$newbranch" ]; then
action=push
array_addu push_branches "$release"
else