Merge pull request #33968 from peterhoeg/f/wp

wp-cli: use as much memory as possible

authored by Peter Hoeg and committed by GitHub 08d3da7a b0cb660e

+4 -1
+4 -1
pkgs/development/tools/wp-cli/default.nix
··· 26 26 27 27 ini = writeText "wp-cli.ini" '' 28 28 [PHP] 29 - memory_limit = 512M ; composer can be a bit of a memory pig 29 + memory_limit = -1 ; composer uses a lot of memory 30 30 31 31 [Phar] 32 32 phar.readonly = Off ··· 40 40 41 41 ln -s ${bin} $out/bin/wp 42 42 install -Dm644 ${completion} $out/share/bash-completion/completions/wp 43 + 44 + # this is a very basic run test 45 + $out/bin/wp --info 43 46 ''; 44 47 45 48 meta = with stdenv.lib; {