Skip to content

Commit

Permalink
chore(scripts): yarn install with --no-immutable to allow lockfile mo…
Browse files Browse the repository at this point in the history
…dification (#6662)
  • Loading branch information
siddsriv authored Nov 13, 2024
1 parent d61ab0a commit c8abb2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-clients/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const {
}

require("./customizations/workspaces-thin-client")();
await spawnProcess("yarn", [], { cwd: REPO_ROOT, stdio: "inherit", env: { ...process.env, CI: "" } });
await spawnProcess("yarn", ["install", "--no-immutable"], { cwd: REPO_ROOT, stdio: "inherit", env: { ...process.env, CI: "" } });
require("../runtime-dependency-version-check/runtime-dep-version-check");
} catch (e) {
console.log(e);
Expand Down

0 comments on commit c8abb2e

Please sign in to comment.