Skip to content

Commit

Permalink
Fix prompt (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejizba authored Mar 8, 2018
1 parent 6f1fc11 commit df0298c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/createNewProject/validateFunctionProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function promptToInitializeProject(folderPath: string): Promise<boolean> {
} else if (result === DialogResponses.seeMoreInfo) {
// tslint:disable-next-line:no-unsafe-any
opn('https://aka.ms/azFuncProject');
await promptToInitializeProject(folderPath);
return await promptToInitializeProject(folderPath);
} else {
throw new UserCancelledError();
}
Expand Down

0 comments on commit df0298c

Please sign in to comment.