From c3f0800c5610035736ee447564227cdf3546a850 Mon Sep 17 00:00:00 2001 From: Sam Alba Date: Tue, 18 Jan 2022 14:59:51 -0800 Subject: [PATCH] Universe: yarn: updated docker.#Run syntax Signed-off-by: Sam Alba --- pkg/universe.dagger.io/yarn/yarn.cue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/universe.dagger.io/yarn/yarn.cue b/pkg/universe.dagger.io/yarn/yarn.cue index ec883468..6b616484 100644 --- a/pkg/universe.dagger.io/yarn/yarn.cue +++ b/pkg/universe.dagger.io/yarn/yarn.cue @@ -100,8 +100,7 @@ import ( // FIXME: mount secrets } - // FIXME - directories: "/build": _ + export: directories: "/build": _ env: { YARN_BUILD_SCRIPT: yarnScript @@ -119,5 +118,5 @@ import ( } // The final contents of the package after build - output: command.directories."/build".contents + output: command.export.directories."/build".contents }