You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2015/08/04 22:20:57 UTC

[2/4] isis git commit: ISIS-1082: minor updates to contributors guide.

ISIS-1082: minor updates to contributors guide.


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/a197924b
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/a197924b
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/a197924b

Branch: refs/heads/master
Commit: a197924b02ad2186ceced45b60bfd78ecd85b73e
Parents: e927810
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue Aug 4 07:53:52 2015 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue Aug 4 07:53:52 2015 +0100

----------------------------------------------------------------------
 .../documentation/src/main/asciidoc/guides/_cg_committers.adoc | 2 +-
 .../main/asciidoc/guides/_cg_committers_release-process.adoc   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/a197924b/adocs/documentation/src/main/asciidoc/guides/_cg_committers.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers.adoc
index 1e08b24..0b266ba 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers.adoc
@@ -1,5 +1,5 @@
 [[_cg_committers]]
-= Committers
+= Committers' Guide
 :notice: licensed to the apache software foundation (asf) under one or more contributor license agreements. see the notice file distributed with this work for additional information regarding copyright ownership. the asf licenses this file to you under the apache license, version 2.0 (the "license"); you may not use this file except in compliance with the license. you may obtain a copy of the license at. http://www.apache.org/licenses/license-2.0 . unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "as is" basis, without warranties or  conditions of any kind, either express or implied. see the license for the specific language governing permissions and limitations under the license.
 :_basedir: ../
 :_imagesdir: images/

http://git-wip-us.apache.org/repos/asf/isis/blob/a197924b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_release-process.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_release-process.adoc b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_release-process.adoc
index c110b7f..463bfe9 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_cg_committers_release-process.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_cg_committers_release-process.adoc
@@ -110,7 +110,7 @@ To run the RAT tool, use:
 
 [source,bash]
 ----
-mvn org.apache.rat:apache-rat-plugin:check -D rat.numUnapprovedLicenses=50 -o
+mvn org.apache.rat:apache-rat-plugin:check -D rat.numUnapprovedLicenses=50 -o && \
 for a in `/bin/find . -name rat.txt -print`; do grep '!???' $a; done
 ----
 
@@ -133,7 +133,7 @@ groovy ../scripts/addmissinglicenses.groovy -x
 
 [source,bash]
 ----
-mvn org.apache.rat:apache-rat-plugin:check -D rat.numUnapprovedLicenses=0 -o
+mvn org.apache.rat:apache-rat-plugin:check -D rat.numUnapprovedLicenses=0 -o && \
 for a in `find . -name rat.txt -print`; do grep '!???' $a; done
 ----
 
@@ -148,7 +148,7 @@ To capture the missing license information, use:
 
 [source,bash]
 ----
-mvn license:download-licenses
+mvn license:download-licenses && \
 groovy ../scripts/checkmissinglicenses.groovy
 ----