From fb84fa50f14fda47dffb8e20ed87216aa891c365 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Fri, 8 Dec 2023 08:52:32 +0000 Subject: [PATCH] fix `dev` function --- example/.fluentci/src/dagger/jobs.ts | 2 +- src/dagger/jobs.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/.fluentci/src/dagger/jobs.ts b/example/.fluentci/src/dagger/jobs.ts index f104eb6..66c064e 100644 --- a/example/.fluentci/src/dagger/jobs.ts +++ b/example/.fluentci/src/dagger/jobs.ts @@ -267,7 +267,7 @@ export async function dev( "classic.yarnpkg.com", "rtx", ]) - .withExec(["sh", "-c", `echo 'eval "$(rtx activate bash)" >> ~/.bashrc`]) + .withExec(["sh", "-c", `echo 'eval "$(rtx activate bash)"' >> ~/.bashrc`]) .withMountedCache( "/app/node_modules", client.cacheVolume(`node_modules_${pm}`) diff --git a/src/dagger/jobs.ts b/src/dagger/jobs.ts index f104eb6..66c064e 100644 --- a/src/dagger/jobs.ts +++ b/src/dagger/jobs.ts @@ -267,7 +267,7 @@ export async function dev( "classic.yarnpkg.com", "rtx", ]) - .withExec(["sh", "-c", `echo 'eval "$(rtx activate bash)" >> ~/.bashrc`]) + .withExec(["sh", "-c", `echo 'eval "$(rtx activate bash)"' >> ~/.bashrc`]) .withMountedCache( "/app/node_modules", client.cacheVolume(`node_modules_${pm}`)