fix: missing hash bang

This commit is contained in:
Mikeal Rogers 2019-01-26 23:00:32 +00:00
parent 9ce4723d93
commit 485cf3d923
1 changed files with 2 additions and 2 deletions

4
cli.js
View File

@ -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()))