Skip to content

Commit 8b02fc1

Browse files
committed
fix lint
1 parent ede1045 commit 8b02fc1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/cli-vector/src/cli/cli.create.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ export const CreateCommand = command({
7171
const joinedFile = `${TmpPath}/joined.mbtiles`;
7272

7373
await tileJoin(mbtileFiles, joinedFile, logger);
74-
if (!(await fsa.exists(fsa.toUrl(joinedFile))))
75-
throw new Error(`Failed to create joined mbtiles ${joinedFile}`);
74+
if (!(await fsa.exists(fsa.toUrl(joinedFile)))) throw new Error(`Failed to create joined mbtiles ${joinedFile}`);
7675
logger.info({ output: joinedFile }, 'JoinMbtiles:End');
7776
}
7877
},

0 commit comments

Comments
 (0)