From 9f057ae5b575e20a985a9d6041e9331cfc24945a Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Thu, 1 Sep 2022 08:37:48 +0200 Subject: [PATCH] post: remove arrow --- post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.js b/post.js index 281881b..ac6bbe0 100644 --- a/post.js +++ b/post.js @@ -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) } }