Skip to content

Commit

Permalink
Merge pull request #1759 from prisma/kebab-case-params
Browse files Browse the repository at this point in the history
Kebab-case parameters due to a change in QE/IE/ME
  • Loading branch information
timsuchanek committed Mar 4, 2020
2 parents dc19033 + 5797150 commit a3ef09b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/sdk/src/engineCommands.ts
Expand Up @@ -111,7 +111,7 @@ export async function getDMMF({

result = await execa(
prismaPath,
['--enable_raw_queries', 'cli', '--dmmf'],
['--enable-raw-queries', 'cli', 'dmmf'],
options,
)

Expand Down Expand Up @@ -212,7 +212,7 @@ export async function getConfig({
try {
const result = await execa(
prismaPath,
['cli', '--get_config', tempDatamodelPath],
['cli', 'get-config', tempDatamodelPath],
{
cwd,
env: {
Expand Down Expand Up @@ -253,7 +253,7 @@ export async function dmmfToDml(

const filePath = await tmpWrite(JSON.stringify(input))
try {
const args = ['cli', '--dmmf_to_dml', filePath]
const args = ['cli', 'dmmf-to-dml', filePath]
debug(args)
const result = await execa(prismaPath, args, {
env: {
Expand Down

0 comments on commit a3ef09b

Please sign in to comment.