diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2006-03-29 21:59:09 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2006-03-29 21:59:09 +0000 |
commit | 316ecf6348a1e80a50b0909d9b95a2678f3ea3af (patch) | |
tree | 31eff65c24ac0b13855d35f1abd4c8a124e19649 /tools | |
parent | 1723e8c7ed99ac0b3f534204cd6f76f85b26679e (diff) | |
download | bcfg2-316ecf6348a1e80a50b0909d9b95a2678f3ea3af.tar.gz bcfg2-316ecf6348a1e80a50b0909d9b95a2678f3ea3af.tar.bz2 bcfg2-316ecf6348a1e80a50b0909d9b95a2678f3ea3af.zip |
Fix a few more minor details
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1822 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/export.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/export.sh b/tools/export.sh index ff9742dfc..5b0ff92e5 100755 --- a/tools/export.sh +++ b/tools/export.sh @@ -11,7 +11,7 @@ if [ -z "$version" ] ; then exit 1 fi tagstr=`echo ${version} | sed -e 's/\./_/g'` -svn copy "${repo}/trunk" "${repo}/tags/${name}_${tagstr}" -m "tagged ${tagstr} release" +svn copy "${repo}/trunk" "${repo}/tags/${name}_${tagstr}" -m "tagged ${version} release" svn export . "${expath}" svn log -v "${repo}/tags/${name}_${tagstr}" > "${expath}/ChangeLog" cd "${expath}"/doc && make |