diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-21 21:25:41 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-21 21:25:41 -0500 |
commit | b54ddd2cf4159cf0678db1000ddf7e1796bbb6c6 (patch) | |
tree | 2822a58cf533de20e618fe3d3722eef710ac4915 | |
parent | 0b36e8ecb3b9ec4dba9e52d795d20dc8623bbd99 (diff) | |
download | devtools32-b54ddd2cf4159cf0678db1000ddf7e1796bbb6c6.tar.xz |
Create the 'repos' dir if it doesn't exist
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | archrelease | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archrelease b/archrelease index dc86d3f..2ce6f35 100755 --- a/archrelease +++ b/archrelease @@ -7,6 +7,7 @@ fi if [ ! -d ../repos/$1 ]; then pushd .. + [ -d repos ] || mkdir repos svn copy -r HEAD trunk repos/$1 svn commit -m "archrelease: new repo $1" pushd repos/$1 |