Skip to content

Commit

Permalink
[MRELEASE-1097] strong("local") instead of "LOCAL"
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed May 29, 2022
1 parent 35f467b commit 702723c
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -54,6 +54,7 @@
import org.codehaus.plexus.util.StringUtils;

import static java.util.Objects.requireNonNull;
import static org.apache.maven.shared.utils.logging.MessageUtils.buffer;

/**
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
Expand Down Expand Up @@ -277,7 +278,8 @@ public ReleaseResult simulate( ReleaseDescriptor releaseDescriptor, ReleaseEnvir
if ( releaseDescriptor.isLocalCheckout() )
{
logInfo( result,
"This would be a LOCAL check out to perform the release from " + checkoutDirectory + "..." );
"The project would have a " + buffer().strong( "local" )
+ " check out to perform the release from " + checkoutDirectory + "..." );
}
else
{
Expand Down

0 comments on commit 702723c

Please sign in to comment.