We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be68d1 commit a5f5c9dCopy full SHA for a5f5c9d
questions/questions.ts
@@ -88,7 +88,9 @@ export const askProQuestions = async (program: QuestionArgs) => {
88
questionHandlers,
89
);
90
program.llamapack = llamapack;
91
- program.postInstallAction = await askPostInstallAction(program);
+ if (!program.postInstallAction) {
92
+ program.postInstallAction = await askPostInstallAction(program);
93
+ }
94
return; // early return - no further questions needed for llamapack projects
95
}
96
@@ -396,5 +398,7 @@ export const askProQuestions = async (program: QuestionArgs) => {
396
398
program.tools = tools;
397
399
400
401
402
403
404
};
0 commit comments