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 49e797d commit d26c5b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions example/.fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,7 @@ export async function dev(
)
.withMountedCache("/app/dist", client.cacheVolume("dist"))
.withDirectory("/app", context, { exclude })
.withWorkdir("/app")
.withExec([pm, "install"]);
.withWorkdir("/app");

await ctr.stdout();

Expand Down
3 changes: 1 addition & 2 deletions src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,7 @@ export async function dev(
)
.withMountedCache("/app/dist", client.cacheVolume("dist"))
.withDirectory("/app", context, { exclude })
.withWorkdir("/app")
.withExec([pm, "install"]);
.withWorkdir("/app");

await ctr.stdout();

Expand Down

0 comments on commit d26c5b6

Please sign in to comment.