From 469f45806a12722bccab97d324e0ebb08cf7e652 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Wed, 16 Jun 2021 14:39:37 +0000 Subject: [PATCH] Docs: 102: shorten note about plan manual copy Signed-off-by: Solomon Hykes --- docs/learn/102-dev.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/learn/102-dev.md b/docs/learn/102-dev.md index de15215b..3bb31336 100644 --- a/docs/learn/102-dev.md +++ b/docs/learn/102-dev.md @@ -217,7 +217,7 @@ You can also browse the [Dagger Universe](/reference/universe) reference in the ### Create a new environment -Now that your Cue package is ready, let's create an environment to run it, +Now that your Cue package is ready, let's create an environment to run it: ```shell dagger new 'multibucket' @@ -231,10 +231,9 @@ Now let's configure the new environment to use our package as its plan: cp multibucket-*.cue .dagger/env/multibucket/plan/ ``` -Note: you need to copy the files from your package into the environment's plan directory, as shown above. -This means that, if you make more changes to your package, you will need to copy the new version into the plan directory, or it will not be used. -If you prefer, you can also edit the cue files directly in the plan directory, but we don't recommend it. -In the future, we will probably add the ability to reference your package to make the manual copy unnecessary. +Note: you need to copy the files from your package into the environment, as shown above. +If you make more changes to your package, you will need to copy the new version, or it will not be used. +In the future, we will add the ability to reference your Cue package directory, making this manual copy unnecessary. ### Configure user inputs