On Sat, Mar 30, 2013 at 9:11 AM, Danny Ayers <[email protected]> wrote: > Not sure what the problem with the previous patch was, but I've attached > another to > https://issues.apache.org/jira/browse/STANBOL-897 > > called patch_2013-03-30.txt > > which I just generated using: > > stanbol$ svn diff ./commons/security/usermanagement > patch_2013-03-30.txt > > I just tried applying this to a local copy of stanbol from svn, freshly > updated, with - > > stanbol$ patch -p0 --verbose ./../../stanbol/patch_2013-03-30.txt > > but for me this just hangs (not sure I've used patch on this machine > before). > > Am I missing something?
You are missing a < before the path to your patch. $ patch -p0 --verbose < ./../../stanbol/patch_2013-03-30.txt And then it's not going to work because of the wrong directory you're applying it in. Cheers, Reto
