We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ede1045 commit 8b02fc1Copy full SHA for 8b02fc1
packages/cli-vector/src/cli/cli.create.ts
@@ -71,8 +71,7 @@ export const CreateCommand = command({
71
const joinedFile = `${TmpPath}/joined.mbtiles`;
72
73
await tileJoin(mbtileFiles, joinedFile, logger);
74
- if (!(await fsa.exists(fsa.toUrl(joinedFile))))
75
- throw new Error(`Failed to create joined mbtiles ${joinedFile}`);
+ if (!(await fsa.exists(fsa.toUrl(joinedFile)))) throw new Error(`Failed to create joined mbtiles ${joinedFile}`);
76
logger.info({ output: joinedFile }, 'JoinMbtiles:End');
77
}
78
},
0 commit comments