We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cc022 commit 549d6a7Copy full SHA for 549d6a7
.changeset/orange-pots-clap.md
@@ -0,0 +1,5 @@
1
+---
2
+"@opennextjs/aws": patch
3
4
+
5
+fix: Ensure os is prefixed in install deps
packages/open-next/src/build/installDeps.ts
@@ -34,7 +34,7 @@ export function installDependencies(
34
const libcOption = installOptions.libc
35
? `--libc=${installOptions.libc}`
36
: "";
37
- const osOption = installOptions.os ? `--os=${installOptions.os}` : "linux";
+ const osOption = `--os=${installOptions.os ?? "linux"}`;
38
39
const additionalArgs = installOptions.additionalArgs ?? "";
40
const installCommand = `npm install ${osOption} ${archOption} ${targetOption} ${libcOption} ${additionalArgs} ${installOptions.packages.join(" ")}`;
0 commit comments