diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 01:53:18 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 01:53:18 -0500 |
commit | ba6e6648e991a435efc93771283d6ee715775aa8 (patch) | |
tree | 6113ca9f9ab0ae7d9d95455ce6f323ddd4ee5525 /archrelease | |
parent | d01f3d53e8d76a09d188d3001f40c652614ccf11 (diff) | |
download | devtools32-ba6e6648e991a435efc93771283d6ee715775aa8.tar.xz |
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>
Diffstat (limited to 'archrelease')
-rwxr-xr-x | archrelease | 2 |
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 |