From dab6fa1a4eb1b9b93ab071cadaee18df9e571ccc Mon Sep 17 00:00:00 2001 From: Will Brennan <will.brennan@cultureamp.com> Date: Thu, 6 Feb 2025 17:08:57 +1100 Subject: [PATCH] fix(devbox): add devbox install tool to containerbase (#34002) --- lib/util/exec/containerbase.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/util/exec/containerbase.ts b/lib/util/exec/containerbase.ts index b0cdd7bd4b..fc217d7e0b 100644 --- a/lib/util/exec/containerbase.ts +++ b/lib/util/exec/containerbase.ts @@ -48,6 +48,11 @@ const allToolConfig: Record<string, ToolConfig> = { packageName: 'corepack', versioning: npmVersioningId, }, + devbox: { + datasource: 'github-releases', + packageName: 'jetify-com/devbox', + versioning: semverVersioningId, + }, dotnet: { datasource: 'dotnet-version', packageName: 'dotnet-sdk', -- GitLab