lol

casperjs: do not move the current working directory

If /tmp and /nix are in different filesystems, this causes the `find`s
in the fixup phase to fail because of a stale file handle:

find: cannot get current directory: No such file or directory

+1 -2
+1 -2
pkgs/development/tools/casperjs/default.nix
··· 28 28 make test 29 29 ''; 30 30 31 - 32 31 installPhase = '' 33 - mv $PWD $out 32 + cp -r . $out 34 33 ''; 35 34 36 35 meta = {