Skip to content
This repository has been archived by the owner on Mar 19, 2019. It is now read-only.

Commit

Permalink
Remove leading . from operation name
Browse files Browse the repository at this point in the history
  • Loading branch information
cdupuis committed Jan 27, 2017
1 parent 40f4a6d commit 94b5fa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.atomist</groupId>
<artifactId>rug-resolver</artifactId>
<version>0.11.0-SNAPSHOT</version>
<version>0.10.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>rug-resolver</name>
<description>Resolver library used to resolve Rug Operations and Archives</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/atomist/rug/metadata/MetadataWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public Operation(ProjectOperation operation) {
// strip out the fully qualified names as we don't want them here
int ix = operation.name().lastIndexOf('.');
if (ix > 0) {
name = operation.name().substring(ix);
name = operation.name().substring(ix + 1);
}
else {
name = operation.name();
Expand Down

0 comments on commit 94b5fa2

Please sign in to comment.