From 485cf3d923224453637a133a4262aa2ad0f11a64 Mon Sep 17 00:00:00 2001 From: Mikeal Rogers Date: Sat, 26 Jan 2019 23:00:32 +0000 Subject: [PATCH] fix: missing hash bang --- cli.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli.js b/cli.js index 4f2f1e7..2c5804e 100644 --- a/cli.js +++ b/cli.js @@ -1,3 +1,3 @@ +#!/usr/bin/env node const fs = require('fs') -console.log(process.env) -console.log(fs.readFileSync('/github/workflow/event.json').toString()) +console.log(JSON.parse(fs.readFileSync('/github/workflow/event.json').toString()))