Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sheal (0.33 sec)

  1. Makefile

    PWD := $(shell pwd)
    GOPATH := $(shell go env GOPATH)
    LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
    
    GOARCH := $(shell go env GOARCH)
    GOOS := $(shell go env GOOS)
    
    VERSION ?= $(shell git describe --tags)
    REPO ?= quay.io/minio
    TAG ?= $(REPO)/minio:$(VERSION)
    
    GOLANGCI_DIR = .bin/golangci/$(GOLANGCI_VERSION)
    GOLANGCI = $(GOLANGCI_DIR)/golangci-lint
    
    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
  2. Makefile

    %:
    	@$(MAKE_DOCKER) $@
    
    default:
    	@$(MAKE_DOCKER)
    
    shell:
    	@$(RUN) /bin/bash
    
    .PHONY: default shell
    
    else
    
    # If we are not in build container, we need a workaround to get environment properly set
    # Write to file, then include
    $(shell mkdir -p out)
    $(shell $(shell pwd)/common/scripts/setup_env.sh envfile > out/.env)
    include out/.env
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 11 18:29:15 GMT 2021
    - 2.2K bytes
    - Viewed (0)
Back to top