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 782f39b commit 25b74a1Copy full SHA for 25b74a1
helpers/index.ts
@@ -177,11 +177,9 @@ export const installTemplate = async (
177
}
178
179
// Create outputs directory
180
- if (props.tools && props.tools.length > 0) {
181
- await makeDir(path.join(props.root, "output/tools"));
182
- await makeDir(path.join(props.root, "output/uploaded"));
183
- await makeDir(path.join(props.root, "output/llamacloud"));
184
- }
+ await makeDir(path.join(props.root, "output/tools"));
+ await makeDir(path.join(props.root, "output/uploaded"));
+ await makeDir(path.join(props.root, "output/llamacloud"));
185
} else {
186
// this is a frontend for a full-stack app, create .env file with model information
187
await createFrontendEnvFile(props.root, {
0 commit comments