Fix some typoes in plan-publish script
This commit is contained in:
parent
1e44d57254
commit
83d2873636
|
@ -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(
|
||||||
|
|
Loading…
Reference in New Issue