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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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