Building on Windows - status update

Geert Janssens janssens-geert at telenet.be
Thu May 22 04:08:31 EDT 2014


On Wednesday 07 May 2014 16:12:36 Geert Janssens wrote:
> On Wednesday 07 May 2014 14:18:03 Wm Tarr wrote:
> > that the user doesn't really need to see.  I'm probably going to run
> > my install.sh with output to a file from now on.  Is anyone else
> > already doing this?
> 
> Whether you wish to see output while building or not is a personal
> choice.
> 
> I usually run the install command as follows:
> ./install.sh 2>&1 | tee install.log
> 
> This gives me live output and also in the file install.log
> If you only want the output in a file you can do instead
> ./install.sh 2>&1 > tee install.log
> 
Just stumbled upon this message again and like to correct a typo in my 
commands above:
It should be

./install.sh 2>&1 > install.log

instead of

./install.sh 2>&1 > tee install.log

Geert


More information about the gnucash-devel mailing list