ENH: mark time

This commit is contained in:
Bill Hoffman 2006-05-09 12:23:19 -04:00
parent 73a66647a5
commit f294f7ea96
1 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,7 @@
#!/bin/sh
echo "Start release"
date
echo ""
echo "remove and create working directory @CMAKE_RELEASE_DIRECTORY@"
rm -rf @CMAKE_RELEASE_DIRECTORY@
mkdir @CMAKE_RELEASE_DIRECTORY@
@ -81,4 +84,7 @@ if [ ! -z "@EXTRA_COPY@" ]; then
@EXTRA_COPY@
check_exit_value $? "Extra copy step @EXTRA_COPY@" || exit 1
fi
echo "End release"
date
echo ""
exit 0