Skip to content

Commit 5296c97

Browse files
committed
Remove test print
1 parent 7ae2ca8 commit 5296c97

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

genMatrix.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ const getNodeVersionDirs = (base) => getChildDirectories(base)
2525
// Returns the paths of Dockerfiles that are at: base/*/Dockerfile
2626
const getDockerfilesInChildDirs = (base) => getChildDirectories(base)
2727
.filter((directory) => !windowsDirRegex.test(path.basename(directory)))
28-
// Test print the directories
29-
.map((childDir) => {
30-
console.log(childDir);
31-
return childDir;
32-
})
3328
.map((childDir) => path.resolve(childDir, 'Dockerfile'));
3429

3530
const getAllDockerfiles = (base) => getNodeVersionDirs(base).flatMap(getDockerfilesInChildDirs);

0 commit comments

Comments
 (0)