Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit c631349

Browse files
committed
Fix corePackages being downloaded twice
1 parent eb8112e commit c631349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install/prompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export async function getCompatibleVersions(includeRange: semver.Range = support
125125
*/
126126
export async function buildPackageList(version: string, services: string[]): Promise<NpmPackage[]> {
127127
const servicePackageNames = services.map((name) => `nodecg-io-${name}`);
128-
const packageNames = corePackages.concat(corePackages, servicePackageNames);
128+
const packageNames = corePackages.concat(servicePackageNames);
129129

130130
const resolvePromises = packageNames.map(async (pkgName) => ({
131131
name: pkgName,

0 commit comments

Comments
 (0)