feat(invoke-binary): add ls command execution in runGo function
Some checks failed
Lint Pull Request / Lint Pr Title (pull_request) Failing after 4s

This commit is contained in:
Jan K9f 2025-04-09 18:08:58 +02:00
parent 72b5dd18f3
commit da4a8b3030
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -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', '.'],