diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-01T17·52+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-02-01T17·52+0000 |
commit | 9f6835c2829310f3c58abb39002a4a580e3ae35e (patch) | |
tree | 71deccc759e8919a871f5ec4289476c4326614fd | |
parent | c3981d81f65eda945f7a48d10ce7600fc0419f58 (diff) |
* Remove debug code.
-rw-r--r-- | scripts/nix-build.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/nix-build.in b/scripts/nix-build.in index e11a88dcd0df..4c420dadf1f7 100644 --- a/scripts/nix-build.in +++ b/scripts/nix-build.in @@ -40,7 +40,7 @@ for i in "$@"; do "$i") for j in $storeExprs; do - echo "store expression is $j $(readlink "$j")" >&2 + echo "store expression is $(readlink "$j")" >&2 done # Build the resulting store derivation. @@ -51,7 +51,7 @@ for i in "$@"; do -rv $extraArgs $storeExprs) for j in $outPaths; do - echo "$j $(readlink "$j")" + echo "$(readlink "$j")" done ;; |