Fix a access error when you start two builds in the same minute on a PC by adding the seconds to $TIMENAME, too.

Clean up $DATENAME which included the year twice.

svn path=/trunk/tools/RosBE/; revision=1196
This commit is contained in:
Daniel Reimer 2010-04-18 14:40:03 +00:00
parent 1489cb46d1
commit 13f6da37cf

View File

@ -31,8 +31,8 @@ if ($_ROSBE_USECCACHE -eq 1) {
# Get the current date and time for use in in our build log's file name. # Get the current date and time for use in in our build log's file name.
$TIMERAW = get-date -f t $TIMERAW = get-date -f t
$DATENAME = get-date -f dyMMyyyy $DATENAME = get-date -f dMMyyyy
$TIMENAME = get-date -f HHmm $TIMENAME = get-date -f Hms
# Check whether we were called as "makex" or "make" # Check whether we were called as "makex" or "make"
if ("$($args[0])" -eq "multi") { if ("$($args[0])" -eq "multi") {