Skip to content

Commit 63030ad

Browse files
committed
fix: output format
1 parent 0380a50 commit 63030ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/src/v1/convert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async function doConvert(request, response) {
6363
if (body.coordinates && body.coordinates === '2D') flags.push('--gen2D');
6464
if (body.coordinates && body.coordinates === '3D') flags.push('--gen3D');
6565
flags.push(`-i${body.inputFormat.replace(/ .*/, '')}`);
66-
flags.push(`-o ${body.outputFormat.replace(/ .*/, '')}`);
66+
flags.push(`-o${body.outputFormat.replace(/ .*/, '')}`);
6767

6868
const result = spawnSync(BABEL, flags, {
6969
stdio: ['pipe', 'pipe', 'pipe'],

0 commit comments

Comments
 (0)