View Single Post
  #631  
Old December 18th, 2006, 10:22 PM
Nephelim's Avatar

Nephelim Nephelim is offline
Private
 
Join Date: Mar 2004
Location: SF Bay Area, CA
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Nephelim is on a distinguished road
Default Bug in 3.04 patchme.command script for OS X

line 19 of patchme.command

cp Resources/doc/* ../Dominions3.app/Contents/Resources/doc

This results in a cp usage message, because a fresh (from CD) install doesn't have a doc directory to copy the files into.

I'd suggest putting the line:

Code:

[ -d ../Dominions3.app/Contents/Resources/doc ] || mkdir ../Dominions3.app/Contents/Resources/doc



just above it.
Reply With Quote