aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-09-27 21:01:19 +0200
committerEelco Dolstra <edolstra@gmail.com>2018-09-27 21:01:19 +0200
commit7cba4214a83fc613b60bb3abfe7ba18ff8201d37 (patch)
tree99e8f293caee19b1a91d3060d0cf1a4ce79fbf3e /src
parent97504300032c7c57388d68bbe4a05b0a494e81aa (diff)
Don't talk about a "current folder build output"
Presumably this refers to ./default.nix but the support for that in 'nix' is tenuous. Also folders are a Mac thing.
Diffstat (limited to 'src')
-rw-r--r--src/nix/copy.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nix/copy.cc b/src/nix/copy.cc
index 91711c8b4..96bd453d8 100644
--- a/src/nix/copy.cc
+++ b/src/nix/copy.cc
@@ -69,12 +69,12 @@ struct CmdCopy : StorePathsCommand
},
#ifdef ENABLE_S3
Example{
- "To populate the current folder build output to a S3 binary cache:",
- "nix copy --to s3://my-bucket?region=eu-west-1"
+ "To copy Hello to an S3 binary cache:",
+ "nix copy --to s3://my-bucket?region=eu-west-1 nixpkgs.hello"
},
Example{
- "To populate the current folder build output to an S3-compatible binary cache:",
- "nix copy --to s3://my-bucket?region=eu-west-1&endpoint=example.com"
+ "To copy Hello to an S3-compatible binary cache:",
+ "nix copy --to s3://my-bucket?region=eu-west-1&endpoint=example.com nixpkgs.hello"
},
#endif
};