Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for isArch (0.28 seconds)

  1. docker-buildx.sh

    	release=$(git describe --abbrev=0 --tags)
    	export release
    }
    
    function _build() {
    	local osarch=$1
    	IFS=/ read -r -a arr <<<"$osarch"
    	os="${arr[0]}"
    	arch="${arr[1]}"
    	package=$(go list -f '{{.ImportPath}}')
    	printf -- "--> %15s:%s\n" "${osarch}" "${package}"
    
    	# go build -trimpath to build the binary.
    	export GOOS=$os
    	export GOARCH=$arch
    	export MINIO_RELEASE=RELEASE
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Oct 19 08:22:05 GMT 2025
    - 1.9K bytes
    - Click Count (0)
Back to Top