Skip to content

Commit

Permalink
Show correct env filename on serverless firstrun deploy (#6023)
Browse files Browse the repository at this point in the history
  • Loading branch information
joconor authored and jtoar committed Jul 28, 2022
1 parent 3703dcf commit bd63cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/deploy/serverless.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const handler = async (yargs) => {
const { addDotEnv } = await prompts({
type: 'confirm',
name: 'addDotEnv',
message: `Add API_URL to your .env.production? This will be used if you deploy the web side from your machine`,
message: `Add API_URL to your .env.${yargs.stage}? This will be used if you deploy the web side from your machine`,
})

if (addDotEnv) {
Expand Down

0 comments on commit bd63cdf

Please sign in to comment.