post: remove arrow

This commit is contained in:
Dawid Dziurla
2022-09-01 08:37:48 +02:00
committed by GitHub
parent b93f2d337f
commit 9f057ae5b5

View File

@@ -3,7 +3,7 @@ const fs = require('fs')
function rm(file) {
if (fs.existsSync(file)) {
core.info(`==> Deleting "${file}" file`)
core.info(`Deleting "${file}" file`)
fs.unlinkSync(file)
}
}