Remove stray semicolons
This commit is contained in:
parent
ad625abac3
commit
aa36aa6f13
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
import { EXT_PARTITIONS } from '../util/partitions';
|
||||
import { EXT_PARTITIONS } from '../util/partitions'
|
||||
|
||||
export interface BlobEntry {
|
||||
partition: string
|
||||
|
|
|
@ -44,7 +44,7 @@ export async function loadPartitionProps(sourceRoot: string) {
|
|||
continue
|
||||
}
|
||||
|
||||
let props = parseProps(await fs.readFile(propPath, { encoding: 'utf8' }));
|
||||
let props = parseProps(await fs.readFile(propPath, { encoding: 'utf8' }))
|
||||
partProps.set(partition, props)
|
||||
}
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ function getRelativeInstallPath(entry: BlobEntry, pathParts: Array<string>, inst
|
|||
}
|
||||
|
||||
let subpath = pathParts.slice(1, -1).join('/')
|
||||
return subpath.length == 0 ? null : subpath;
|
||||
return subpath.length == 0 ? null : subpath
|
||||
}
|
||||
|
||||
export function blobToSoongModule(
|
||||
|
|
Loading…
Reference in a new issue