Commit ba6e6648 authored by Aaron Griffin's avatar Aaron Griffin
Browse files

Copy only the HEAD revision when releasing



This prevents the copying of local files and only
copies versioned files

Signed-off-by: default avatarAaron Griffin <aaronmgriffin@gmail.com>
parent d01f3d53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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