Compare commits

...

3 Commits

Author SHA1 Message Date
Christian P. MOMON 6fb712ed18 Build 2.11.0 2021-04-09 03:19:53 +02:00
Christian P. MOMON c2aeedced2 Fixed Java version check in build script. 2021-04-09 03:19:32 +02:00
Christian P. MOMON 44b1865a9b Improved label. 2021-04-09 03:16:14 +02:00
4 changed files with 10 additions and 10 deletions

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Fri May 03 17:33:54 CEST 2019
build.number=0
#Fri Apr 09 03:19:43 CEST 2021
build.number=1

View File

@ -83,11 +83,11 @@ function build_local
# Java version check.
javaVersionCheck=`javac -version 2>&1`
if [[ "$javaVersionCheck" =~ ^.*\ 1.8 ]]; then
echo "Java 8 version requirement..... OK"
if [[ "$javaVersionCheck" =~ ^.*\ 11. ]]; then
echo "Java 11 version requirement..... OK"
let "okCount+=1"
else
echo "Java 8 version requirement..... MISSING"
echo "Java 11 version requirement..... MISSING"
fi
if [ "$okCount" == 3 ]; then
@ -125,11 +125,11 @@ function build_tagandpush
# Java version check.
javaVersionCheck=`javac -version 2>&1`
if [[ "$javaVersionCheck" =~ ^.*\ 1.8 ]]; then
echo "Java 8 version requirement..... OK"
if [[ "$javaVersionCheck" =~ ^.*\ 11. ]]; then
echo "Java 11 version requirement..... OK"
let "okCount+=1"
else
echo "Java 8 version requirement..... MISSING"
echo "Java 11 version requirement..... MISSING"
fi
# Git check.

View File

@ -53,7 +53,7 @@ public class CollectiveSubjectHook extends Hook
if (!bot.getReview().isEmpty())
{
String participants = StringUtils.join(bot.getReview().getParticipants(), " ");
bot.sendMessage(String.format("%% +%s %s, on va passer à la suite : %s", bot.getTimekeeper().format(), participants,
bot.sendMessage(String.format("%% %s %s, on va passer à la suite : %s", bot.getTimekeeper().format(), participants,
topic.getTitle()));
}
bot.getReview().begin(topic);

View File

@ -53,7 +53,7 @@ public class IndividualSubjectHook extends Hook
if (!bot.getReview().isEmpty())
{
String participants = StringUtils.join(bot.getReview().getParticipants(), " ");
bot.sendMessage(String.format("%% +%s %s, on va passer à la suite : %s", bot.getTimekeeper().format(), participants,
bot.sendMessage(String.format("%% %s %s, on va passer à la suite : %s", bot.getTimekeeper().format(), participants,
topic.getTitle()));
}
bot.getReview().begin(topic);