From aff6fee5272fc71788b7371cfc9515589d0ba185 Mon Sep 17 00:00:00 2001 From: Tim Hawkins Date: Thu, 30 Sep 2021 18:20:51 +0100 Subject: [PATCH] makes json spacing 4 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 934b7c3..1b30c89 100644 --- a/index.js +++ b/index.js @@ -28,7 +28,7 @@ try { fs.writeFileSync( taskDefinitionPath, - JSON.stringify(taskDefinitionContents, null, "\t") + JSON.stringify(taskDefinitionContents, null, 4) ) } catch (error) { core.setFailed(error.message)