diff --git a/tools/release.sh b/tools/release.sh index 832dfcd5dad71c0192ba75528f694a25d4865199..8f04fce9e1e41d13066c8befe90f0fcb8a101476 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -31,12 +31,12 @@ function gen_changelog() #echo $lastline changelog="Changes:\n" - #for i in `seq $firstline $lastline` - #do - # local line=$( head -n $i ChangeLog | tail -n 1 ) - # changelog="$changelog$line\\n" - # #echo $line - #done + for i in `seq $firstline $lastline` + do + local line=$( head -n $i ChangeLog | tail -n 1 ) + changelog="$changelog$line\\n" + #echo $line + done changelog="$changelog\nWARNING: Download the source archive by clicking on the link __Download release__ above, please do not consider the automatic Source code links as they are missing the submodules.\nVisit the [documentation](https://solverstack.gitlabpages.inria.fr/chameleon/#quickstart-install) to see how to install Chameleon." }