summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-04-08 01:53:18 -0500
committerAaron Griffin <aaronmgriffin@gmail.com>2008-04-08 01:53:18 -0500
commitba6e6648e991a435efc93771283d6ee715775aa8 (patch)
tree6113ca9f9ab0ae7d9d95455ce6f323ddd4ee5525
parentd01f3d53e8d76a09d188d3001f40c652614ccf11 (diff)
Copy only the HEAD revision when releasing0.6.1
This prevents the copying of local files and only copies versioned files Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-xarchrelease2
1 files changed, 1 insertions, 1 deletions
diff --git a/archrelease b/archrelease
index 59b85ec..57dc941 100755
--- a/archrelease
+++ b/archrelease
@@ -7,7 +7,7 @@ fi
if [ ! -d ../repos/$1 ]; then
pushd ..
- svn copy trunk repos/$1
+ svn copy -r HEAD trunk repos/$1
svn commit -m "archrelease: new repo $1"
popd
else