Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Vanier, Alexandre wrote: > > DEFAULT (echo %s) >> cvs_logs/CommitLog.txt > > When we create a new project, the project will be created but we will > get an error because the script is not able to run properly : It's probably the brackets around the echo. The NT command processor is a strange beast and the way 2.0.62 uses it is slightly different. To get the same kind of effect you may have to launch cmd.exe directly, as in: DEFAULT cmd.exe /c "echo %s" >>cvs_logs/CommitLog.txt Tony