Skip to content

Commit

Permalink
Add link to migration instructions to legacy project warning (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoesel authored Nov 25, 2020
1 parent 54bd97d commit 1f2c3a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/Processing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ export function findInputDir(input: string): string {
msg +=
' - ensure your .gitignore file is not configured to ignore the sources in their new locations\n' +
' - add /fsh-generated to your .gitignore file to prevent SUSHI output from being checked into source control\n\n' +
`NOTE: After you make these changes, the default ouput folder for SUSHI will change to .${path.sep}fsh-generated.\n\n`;
`NOTE: After you make these changes, the default ouput folder for SUSHI will change to .${path.sep}fsh-generated.\n\n` +
'For detailed migration instructions, see: https://fshschool.org/docs/sushi/migration/\n\n';
logger.warn(msg);
}
return input;
Expand Down

0 comments on commit 1f2c3a2

Please sign in to comment.