diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-12-30T23·35+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-12-30T23·35+0000 |
commit | de012e76e2502cd5513cf7e7417aff6db3951cb2 (patch) | |
tree | aaebb2ad74df1b0197ab59ccd44c31836eb15841 /scripts/nix-push.in | |
parent | 2196cb67c5a47eeb822351f1669c201e16ea6ebc (diff) |
* Don't use "store expression", it's obsolete.
Diffstat (limited to 'scripts/nix-push.in')
-rw-r--r-- | scripts/nix-push.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/nix-push.in b/scripts/nix-push.in index 6250f8b0a5c9..137e3112b23b 100644 --- a/scripts/nix-push.in +++ b/scripts/nix-push.in @@ -116,9 +116,9 @@ print NIX "]"; close NIX; -# Instantiate store expressions from the Nix expression. +# Instantiate store derivations from the Nix expression. my @storeExprs; -print STDERR "instantiating store expressions...\n"; +print STDERR "instantiating store derivations...\n"; my $pid = open(READ, "$binDir/nix-instantiate $nixExpr|") or die "cannot run nix-instantiate"; while (<READ>) { |