diff options
| author | 2015-11-25 16:48:41 -0500 | |
|---|---|---|
| committer | 2015-11-25 16:48:41 -0500 | |
| commit | 8e640722c62692818ab840d50b3758f89a41a54e (patch) | |
| tree | 38197eb1688a5afc338081ea17e15f938976e422 /SQLiteStudio3/create_source_dist.sh | |
| parent | 9618f0ebbf4b88045247c01ce8c8f58203508ebf (diff) | |
Imported Upstream version 3.0.7upstream/3.0.7
Diffstat (limited to 'SQLiteStudio3/create_source_dist.sh')
| -rwxr-xr-x | SQLiteStudio3/create_source_dist.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/SQLiteStudio3/create_source_dist.sh b/SQLiteStudio3/create_source_dist.sh index 646e493..7c56e94 100755 --- a/SQLiteStudio3/create_source_dist.sh +++ b/SQLiteStudio3/create_source_dist.sh @@ -1,11 +1,16 @@ #!/bin/sh +path=trunk +if [ "$1" != "" ]; then + path=branches/$1 +fi + OLDDIR=`pwd` TEMP=`mktemp -d` cd $TEMP -svn co svn://sqlitestudio.pl/sqlitestudio3/trunk sqlitestudio +svn co svn://sqlitestudio.pl/sqlitestudio3/$path sqlitestudio cd sqlitestudio rm -rf .svn |
