You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2017/01/14 08:08:39 UTC

svn commit: r1778729 - /directory/site/trunk/content/studio/developers-guide.mdtext

Author: elecharny
Date: Sat Jan 14 08:08:38 2017
New Revision: 1778729

URL: http://svn.apache.org/viewvc?rev=1778729&view=rev
Log:
Fixed teh developper guide for studio

Modified:
    directory/site/trunk/content/studio/developers-guide.mdtext

Modified: directory/site/trunk/content/studio/developers-guide.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/studio/developers-guide.mdtext?rev=1778729&r1=1778728&r2=1778729&view=diff
==============================================================================
--- directory/site/trunk/content/studio/developers-guide.mdtext (original)
+++ directory/site/trunk/content/studio/developers-guide.mdtext Sat Jan 14 08:08:38 2017
@@ -189,10 +189,13 @@ Also create an empty directory used duri
 
 #### Set the version
 
-    find . -name pom-first.xml | xargs sed -i 's/2.0.0-SNAPSHOT/'$VERSION'/'
-    find . -name pom-first.xml | xargs sed -i 's/2.0.0.qualifier/'$VERSION'/'
+    find . -name pom-first.xml | xargs sed -i '' "s/2.0.0-SNAPSHOT/$VERSION/"
+    find . -name pom-first.xml | xargs sed -i '' "s/2.0.0.qualifier/$VERSION/"
+    sed -i '' "s/2.0.0-SNAPSHOT/$VERSION/" pom.xml
     mvn -f pom-first.xml clean install
+    svn revert pom.xml
     mvn org.eclipse.tycho:tycho-versions-plugin:0.22.0:set-version -DnewVersion=$VERSION
+    svn commit -m "Set version number for release $VERSION"
 
 #### Commit