Quote:
Originally Posted by raidzero
heres your solution
Code:
echo > SYS\%buildver%\Chome\_only_both >NUL
echo > SYS\%buildver%\Chome_DPI_192\_only_both >NUL
echo > SYS\%buildver%\Chome_Lang_0409\_only_both >NUL
echo > SYS\%buildver%\Bronze\_only_both >NUL
echo > SYS\%buildver%\BronzeNonEA\_only_both >NUL
echo > SYS\%buildver%\Bronze_DPI_192\_only_both >NUL
echo > SYS\%buildver%\Chome\_only_titanium >NUL
echo > SYS\%buildver%\Chome_DPI_192\_only_titanium >NUL
echo > SYS\%buildver%\Chome_Lang_0409\_only_titanium >NUL
echo > SYS\%buildver%\Bronze\_only_titanium >NUL
echo > SYS\%buildver%\BronzeNonEA\_only_titanium >NUL
echo > SYS\%buildver%\Bronze_DPI_192\_only_titanium >NUL
find that in the cmd file. remove the >NUL at the end of each line, apparently we can't do a redirection after a redirection.. make it look liek this
Code:
echo > SYS\%buildver%\Chome\_only_both
echo > SYS\%buildver%\Chome_DPI_192\_only_both
echo > SYS\%buildver%\Chome_Lang_0409\_only_both
echo > SYS\%buildver%\Bronze\_only_both
echo > SYS\%buildver%\BronzeNonEA\_only_both
echo > SYS\%buildver%\Bronze_DPI_192\_only_both
echo > SYS\%buildver%\Chome\_only_titanium
echo > SYS\%buildver%\Chome_DPI_192\_only_titanium
echo > SYS\%buildver%\Chome_Lang_0409\_only_titanium
echo > SYS\%buildver%\Bronze\_only_titanium
echo > SYS\%buildver%\BronzeNonEA\_only_titanium
echo > SYS\%buildver%\Bronze_DPI_192\_only_titanium
I have fixed this in the kitchen and will be included in future nightly kitchens. I forgot to plug my laptop in last night and it hibernated, so there were no uploads last night
|
edited this in my kitchen.cmd
thanks for the fix.