On 08/24/2013 03:22 PM, Pierre Labrecque wrote: > cd /var/www/sites/mediawiki001 > patch -p1 extensions/IntraACL/patches/IntraACL-MediaWiki-1.21.1.diff > > When I press ENTER after the patch command, nothing append... it stay there > forever... > Just a cursor that doesn't blink, nothing...
You are missing a character: patch -p1 < extensions/IntraACL/patches/IntraACL-MediaWiki-1.21.1.diff You see the blinking cursor and nothing else because patch is stupid and doesn't see that you've given it the patch file on the command line. It expects to read it from STDIN and that is what the "<" does. -- http://hexmode.com/ Love alone reveals the true shape of the universe. -- "Everywhere Present", Stephen Freeman _______________________________________________ Mediawiki-enterprise mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-enterprise
