Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
scme0 committed Mar 18, 2024
1 parent 85793c7 commit e492c48
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions build/Build.Pack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,7 @@ void CreateLinuxPackages(string runtimeId)
{
BuildAndPushOrLoadKubernetesTentacleContainerImage(
push: false,
load: true,
useUpx: true);
load: true);
});

[PublicAPI]
Expand All @@ -169,8 +168,7 @@ void CreateLinuxPackages(string runtimeId)
BuildAndPushOrLoadKubernetesTentacleContainerImage(
push: false,
load: true,
includeDebugger: true,
useUpx: true);
includeDebugger: true);
});

[PublicAPI]
Expand Down Expand Up @@ -544,7 +542,7 @@ void PackTarballs(string runtimeId)
$"tentacle-{FullSemVer}-{NetCore}-{runtimeId}.tar.gz");
}

void BuildAndPushOrLoadKubernetesTentacleContainerImage(bool push, bool load, string? host = null, bool includeDebugger = false, bool useUpx = true)
void BuildAndPushOrLoadKubernetesTentacleContainerImage(bool push, bool load, string? host = null, bool includeDebugger = false)
{
var hostPrefix = host is not null ? $"{host}/" : string.Empty;
DockerTasks.DockerBuildxBuild(settings =>
Expand Down

0 comments on commit e492c48

Please sign in to comment.