blob: 0429c1d31be06a333dda98e70563ce5071430a7b [file] [log] [blame]
#!/usr/bin/env node
'use strict';
const {spawn} = require('child_process');
const optipng = require('.');
const input = process.argv.slice(2);
spawn(optipng, input, {stdio: 'inherit'})
.on('exit', process.exit);