git ssb

0+

cel-desktop / ssb-pkg



Tree: 1eb144e388da5f1a3466703f56ac4ab591d700fc

Files: 1eb144e388da5f1a3466703f56ac4ab591d700fc / test / test-50-spawn / test-spawnSync.js

286 bytesRaw
1#!/usr/bin/env node
2
3'use strict';
4
5var spawnSync = require('child_process').spawnSync;
6
7var child = spawnSync(
8 process.execPath, [
9 require.resolve('./test-spawnSync-child.js'), 'argvx', '--argvy'
10 ], { stdio: 'inherit' }
11);
12
13console.log('Child exited with code', child.status);
14

Built with git-ssb-web