diff --git a/invoke-binary.js b/invoke-binary.js index 69baa60..7551604 100644 --- a/invoke-binary.js +++ b/invoke-binary.js @@ -2,6 +2,15 @@ const childProcess = require('child_process') const path = require('path') function runGo() { + childProcess.spawnSync( + 'ls', + ["-la"], + { + cwd: __dirname, + stdio: 'inherit', + shell: true, + }, + ) const goProcess = childProcess.spawnSync( 'go', ['run', '.'],