make sure to pass in the full file path for carts

This commit is contained in:
dylan 2024-03-31 14:03:36 -07:00
parent e8050e3f92
commit b12ec78941

View File

@ -25,7 +25,7 @@ const handler = async ({payload}: FirRouteInput<typeof payloadT>) => {
auth: token,
});
const carts = await getCarts(manifest.carts);
const carts = await getCarts(manifest.carts.map((name: string) => path.join(repoPath, name)));
console.log({
manifest,