Skip to content

Commit

Permalink
Print out stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Jul 1, 2024
1 parent c0b8215 commit ff8854d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/data-caterer.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ async function waitForDataGeneration(sharedFolder) {
// For applications/jobs that rely on data to be generated first before running, we wait until data caterer has
// created a csv file to notify us that it has completed generating data
const notifyFilePath = `${sharedFolder}/notify/data-gen-done`
fs.mkdirSync(`${sharedFolder}/notify`, { recursive: true })
fs.mkdirSync(`${sharedFolder}/notify`, { recursive: true, mode: 0o755 })
await checkExistsWithTimeout(notifyFilePath)
core.debug('Removing data generation done folder')
try {
Expand All @@ -395,7 +395,7 @@ async function runTests(parsedConfig, configFileDirectory, baseFolder) {
core.debug(`Using data caterer configuration folder: ${configurationFolder}`)
core.info(`Using shared folder: ${sharedFolder}`)
fs.mkdirSync(configurationFolder, { recursive: true })
fs.mkdirSync(sharedFolder, { recursive: true })
fs.mkdirSync(sharedFolder, { recursive: true, mode: 0o755 })

if (parsedConfig.run) {
for (const [i, runConf] of parsedConfig.run.entries()) {
Expand Down

0 comments on commit ff8854d

Please sign in to comment.