about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-10-20 14:08:58 +0000
committerPeter Simons <simons@cryp.to>2009-10-20 14:08:58 +0000
commit4cf582c570d2108e8e421dc7efe39981661e6502 (patch)
treeff704a380f6feb54933c5e55c4a317cc25f687d5 /pkgs/applications
parent2139d48872c901264732fd8353af14ccc2461517 (diff)
downloadnixlib-4cf582c570d2108e8e421dc7efe39981661e6502.tar
nixlib-4cf582c570d2108e8e421dc7efe39981661e6502.tar.gz
nixlib-4cf582c570d2108e8e421dc7efe39981661e6502.tar.bz2
nixlib-4cf582c570d2108e8e421dc7efe39981661e6502.tar.lz
nixlib-4cf582c570d2108e8e421dc7efe39981661e6502.tar.xz
nixlib-4cf582c570d2108e8e421dc7efe39981661e6502.tar.zst
nixlib-4cf582c570d2108e8e421dc7efe39981661e6502.zip
pkgs/applications/version-management/git-and-tools/git/default.nix: dropped 'set -x' from builder script
svn path=/nixpkgs/trunk/; revision=17903
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix
index 1ea858d8b684..99fcd4552542 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -82,11 +82,11 @@ stdenv.mkDerivation rec {
       d="$out/etc/bash_completion.d"
       ensureDir $d; cp contrib/completion/git-completion.bash "$d"
      ''
-   # Don't know why hardlinks aren't created. git installs the same executable multiple times into $out
-   # so replace duplicates by symlinks because I haven't tested whether the nix
-   # distribution system can handle hardlinks. This reduces the size of $out from 115MB down to 13MB on x86_64-linux!
+   # Don't know why hardlinks aren't created. git installs the same executable
+   # multiple times into $out so replace duplicates by symlinks because I
+   # haven't tested whether the nix distribution system can handle hardlinks.
+   # This reduces the size of $out from 115MB down to 13MB on x86_64-linux!
    + ''#
-      set -x
       declare -A seen
       find $out -type f | while read f; do
         sum=$(md5sum "$f");