We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8db8b6 commit dc74861Copy full SHA for dc74861
1 file changed
src/packages/cli/scripts/download.js
@@ -25,6 +25,10 @@ async function main() {
25
)
26
} else {
27
createLockFile()
28
+ let binaryTargets = undefined
29
+ if (process.env.PRISMA_CLI_BINARY_TARGETS) {
30
+ binaryTargets = process.env.PRISMA_CLI_BINARY_TARGETS.split(',')
31
+ }
32
await download({
33
binaries: {
34
'query-engine': binaryDir,
@@ -35,6 +39,7 @@ async function main() {
35
39
showProgress: true,
36
40
version,
37
41
failSilent: true,
42
+ binaryTargets,
38
43
}).catch((e) => debug(e))
44
45
cleanupLockFile()
0 commit comments