-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MRELEASE-1097] strong("local") instead of "LOCAL"
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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:[email protected]">Emmanuel Venisse</a> | ||
|
@@ -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 | ||
{ | ||
|