File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -153,8 +153,7 @@ func (t Target) IncludeAgentInSlimBuildModes() bool {
153153 return ! t .IsCrossTarget () ||
154154 (t .GOOS == "darwin" ) ||
155155 (t .GOOS == "windows" && t .GOARCH == "amd64" ) ||
156- (t .GOOS == "linux" && (t .GOARCH == "amd64" || t .GOARCH == "arm64" )) ||
157- (t .GOOS == "freebsd" && t .GOARCH == "amd64" )
156+ (t .GOOS == "linux" && (t .GOARCH == "amd64" || t .GOARCH == "arm64" ))
158157}
159158
160159// BuildBundleInReleaseSlimMode indicates whether or not the target should have
@@ -163,7 +162,7 @@ func (t Target) BuildBundleInReleaseSlimMode() bool {
163162 return ! t .IsCrossTarget () ||
164163 (t .GOOS == "darwin" ) ||
165164 (t .GOOS == "windows" && t .GOARCH == "amd64" ) ||
166- (t .GOOS == "linux" && t .GOARCH == "amd64" )
165+ (t .GOOS == "linux" && ( t .GOARCH == "amd64" || t . GOARCH == "arm64" ) )
167166}
168167
169168// Build executes a module-aware build of the specified package URL, storing the
You can’t perform that action at this time.
0 commit comments