Fix some typoes in plan-publish script

This commit is contained in:
Radon Rosborough 2021-01-13 21:20:28 -08:00
parent 1e44d57254
commit 83d2873636
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import { Command } from "commander";
import _ from "lodash"; import _ from "lodash";
import { v4 as getUUID } from "uuid"; import { v4 as getUUID } from "uuid";
import { getPackages } from "./config.js"; import { getLangs, getPackages, readLangConfig } from "./config.js";
import { import {
getLocalImageDigest, getLocalImageDigest,
getLocalImageLabel, getLocalImageLabel,
@ -85,7 +85,7 @@ async function planDebianPackages(opts) {
const sharedUUIDs = Object.fromEntries( const sharedUUIDs = Object.fromEntries(
packages packages
.filter(({ type }) => type === "shared") .filter(({ type }) => type === "shared")
.map(({ lang }) => [lang, uuids[name]]) .map(({ lang }) => [lang, uuids[lang]])
); );
const langConfigs = Object.fromEntries( const langConfigs = Object.fromEntries(
await Promise.all( await Promise.all(