aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authornotgne22020-11-10 16:27:45 -0700
committernotgne22020-11-10 16:27:45 -0700
commit05b8e9ecf3fc0696e035a4481a34c2c0e3e551d7 (patch)
treecd7b141a35c2736500b77778d4c52ba42c0382f5 /README.md
parent18341e8a13c1173a362ead9e0257fd024a0fe664 (diff)
Fix setActivate documentation in `README.md`
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index b4b16b7..f367caf 100644
--- a/README.md
+++ b/README.md
@@ -33,8 +33,8 @@ This is the core of how `deploy-rs` was designed, any number of these can run on
```nix
{
- # A derivation containing your required software, and a script to activate it in `${path}/activate`
- # For ease of use, `deploy-rs` provides a function to easy all this required activation script to any derivation
+ # A derivation containing your required software, and a script to activate it in `${path}/deploy-rs-activate`
+ # For ease of use, `deploy-rs` provides a function to easily add the required activation script to any derivation
# Both the working directory and `$PROFILE` will point to `profilePath`
path = deploy-rs.lib.x86_64-linux.setActivate pkgs.hello "./bin/hello";