[Phphtmllib-devel] SF.net SVN: phphtmllib:[3559] branches/BRANCH_2_X/phphtmllib/release.sh
Status: Beta
Brought to you by:
hemna
From: <mpw...@us...> - 2012-03-12 22:01:44
|
Revision: 3559 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3559&view=rev Author: mpwalsh8 Date: 2012-03-12 22:01:37 +0000 (Mon, 12 Mar 2012) Log Message: ----------- Fixed bug in pruning. Modified Paths: -------------- branches/BRANCH_2_X/phphtmllib/release.sh Modified: branches/BRANCH_2_X/phphtmllib/release.sh =================================================================== --- branches/BRANCH_2_X/phphtmllib/release.sh 2012-03-11 12:10:10 UTC (rev 3558) +++ branches/BRANCH_2_X/phphtmllib/release.sh 2012-03-12 22:01:37 UTC (rev 3559) @@ -263,15 +263,17 @@ ## Remove docs? -if [ ! -f "${NODOCS}" ] +if [ ! -z "${NODOCS}" ] then + echo "Pruning documentation from release." rm -r "${EXPORT}/${TARGET}/doc" fi ## Remove examples? -if [ ! -f "${NOEXAMPLES}" ] +if [ ! -z "${NOEXAMPLES}" ] then + echo "Pruning examples from release." rm -r "${EXPORT}/${TARGET}/examples" fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |