Skip to content

Commit

Permalink
python runner in repository deployment fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeManSu committed Nov 5, 2024
1 parent 2d6d6b1 commit eb38a32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/controller/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ const handleRunners = async (repoPath: string): Promise<string[]> => {
if (file === 'package.json') runners.push('nodejs');

if (stat.isDirectory()) {
await handleRunners(fullPath);
const subRunners = await handleRunners(fullPath);
runners.push(...subRunners);
}
}
return runners;
Expand Down

0 comments on commit eb38a32

Please sign in to comment.