Skip to content

Commit

Permalink
Create files sync
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlerdominik committed Feb 27, 2024
1 parent 95eb9e5 commit e426b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dockerRun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const command = fileMap.pushRunnerPath(
)

export async function runContainer(): Promise<void> {
fileMap.items.forEach((items: Mapping) => fs.appendFile(items.runner.path, '', ()=>{},))
fileMap.items.forEach((items: Mapping) => fs.appendFileSync(items.runner.path, ''))
fs.writeFileSync(command!.runner.path, input.get('run'), {mode: 0o755})
core.info(`
Wrote instruction file to "${command!.runner.path}"
Expand Down

0 comments on commit e426b9b

Please sign in to comment.