Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #276 from zapier/convert-rename-env
Browse files Browse the repository at this point in the history
zapier convert: .environment -> .env
  • Loading branch information
eliangcs authored Mar 21, 2018
2 parents c8857ce + ed6b675 commit 319edb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const convert = (context, appid, location) => {
`Finished! You may try \`npm install\` and then \`zapier test\` in "${location}" directory.`
);
context.line(
"Also, if your app has authentication, don't forget to edit the environment variables in the .environment file."
"Also, if your app has authentication, don't forget to edit the environment variables in the .env file."
);
});
};
Expand Down
2 changes: 1 addition & 1 deletion src/utils/convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ const writeEnvironment = (legacyApp, newAppDir) => {
if (!content) {
return Promise.resolve(null);
}
return createFile(content, '.environment', newAppDir);
return createFile(content, '.env', newAppDir);
};

const writeGitIgnore = newAppDir => {
Expand Down

0 comments on commit 319edb6

Please sign in to comment.