From 4829f50d42e784b3cb21b4bd315a5be5ebc2644d Mon Sep 17 00:00:00 2001 From: Yi-Jyun Pan Date: Mon, 18 Dec 2023 14:58:48 +0800 Subject: [PATCH] fix(planner/bun): Pass config in context --- internal/bun/identify.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/bun/identify.go b/internal/bun/identify.go index fae2e587..8e7ad027 100644 --- a/internal/bun/identify.go +++ b/internal/bun/identify.go @@ -38,6 +38,7 @@ func (i *identify) PlanMeta(options plan.NewPlannerOptions) types.PlanMeta { return GetMeta( GetMetaOptions{ Src: options.Source, + Config: options.Config, CustomBuildCmd: options.CustomBuildCommand, CustomStartCmd: options.CustomStartCommand, OutputDir: options.OutputDir,