We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0380a50 commit 63030adCopy full SHA for 63030ad
docker/src/v1/convert.js
@@ -63,7 +63,7 @@ async function doConvert(request, response) {
63
if (body.coordinates && body.coordinates === '2D') flags.push('--gen2D');
64
if (body.coordinates && body.coordinates === '3D') flags.push('--gen3D');
65
flags.push(`-i${body.inputFormat.replace(/ .*/, '')}`);
66
- flags.push(`-o ${body.outputFormat.replace(/ .*/, '')}`);
+ flags.push(`-o${body.outputFormat.replace(/ .*/, '')}`);
67
68
const result = spawnSync(BABEL, flags, {
69
stdio: ['pipe', 'pipe', 'pipe'],
0 commit comments