UNPKG

bit-ship

Version:

Bit-Ship CLI is tool that analyses your code and generates a custom environment for your needs You can use if to local development, CI/CD or even production.

7 lines (5 loc) 194 B
#!/usr/bin/env node import { spawnSync } from 'child_process' const args = process.argv.slice(2) const result = spawnSync('podman', args, { stdio: 'inherit' }) process.exit(result.status ?? 0)