1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix cluster connection failing after execHelm (#5432)

This commit is contained in:
Sebastian Malton 2022-05-20 06:15:15 -07:00
parent 69c3fc06e7
commit 180044cda2

View File

@ -23,7 +23,7 @@ export async function execHelm(args: string[], { encoding, ...rest }: BaseEncodi
try {
const opts = { ...options };
opts.env ??= process.env;
opts.env ??= { ...process.env };
if (!opts.env.HTTPS_PROXY && UserStore.getInstance().httpsProxy) {
opts.env.HTTPS_PROXY = UserStore.getInstance().httpsProxy;