Skip to content

Commit

Permalink
fix dev function
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Dec 8, 2023
1 parent 2bf82ae commit fb84fa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/.fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
Expand Down
2 changes: 1 addition & 1 deletion src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
Expand Down

0 comments on commit fb84fa5

Please sign in to comment.