Skip to content

Commit b49e490

Browse files
committed
Properly exit after writing files / Remove console log
1 parent d1124cd commit b49e490

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

buildFiles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ function getBuildFiles(externalFiles, debugLog) {
3434
}
3535

3636
const getAllBuildFiles = function (dirPath, arrayOfFiles) {
37-
console.log('checking ' + dirPath)
3837
const files = fs.readdirSync(dirPath)
3938

4039
arrayOfFiles = arrayOfFiles || []

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ async function executeCommandAndWaitForExitCode(command, args) {
197197
process.exit()
198198
}
199199

200-
}, buildFileContentMap)
200+
})
201+
202+
process.exit()
201203

202204
})();
203205

0 commit comments

Comments
 (0)