Skip to content

Commit

Permalink
Some buildtool updates
Browse files Browse the repository at this point in the history
  • Loading branch information
evert committed Jan 11, 2010
1 parent 2e7df16 commit 140eb6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion bin/pearpackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ function getDirectory($path)
if (is_dir($newPath)) {
$files = array_merge($files, getDirectory($newPath));
} else {
echo 'Including: ', $newPath, "\n";
$files[] = $newPath;
}
}
Expand Down
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

<target name="release" depends="init,build">
<echo>Creating Subversion release tag</echo>
<exec command="svn cp ^/trunk ^/tags/${sabredav.version} -M 'Release tag ${sabredav.version}" checkreturn="true" escape="false" passthru="1" />
<exec command="svn cp ^/trunk ^/tags/${sabredav.version} -m 'Release tag ${sabredav.version}'" checkreturn="true" passthru="1" />
<echo>Pushing to pearfarm</echo>
<exec command="pearfarm push Sabre_DAV-${sabredav.version}.tgz" checkreturn="true" passhtru="1" />
<!--<exec command="pearfarm push Sabre_DAV-${sabredav.version}.tgz" checkreturn="true" passthru="1" />-->
<echo>Uploading to Google Code</echo>
<exec command="bin/googlecode-upload.py -s 'SabreDAV ${sabredav.version}' -p sabredav --labels=${sabredav.ucstability} Sabre_DAV-${sabredav.version}.tgz" checkreturn="true" passthru="1" />
</target
<!--<exec command="bin/googlecode_upload.py -s 'SabreDAV ${sabredav.version}' -p sabredav - -labels=${sabredav.ucstability} Sabre_DAV-${sabredav.version}.tgz" checkreturn="true" passthru="1" />-->
</target>

<target name="init">

Expand Down

0 comments on commit 140eb6a

Please sign in to comment.