mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
fix: do not hardcode bash path (#1358)
Co-authored-by: houseme <housemecn@gmail.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -19,7 +19,7 @@ NUM_CORES := $(shell nproc 2>/dev/null || sysctl -n hw.ncpu)
|
|||||||
MAKEFLAGS += -j$(NUM_CORES) -l$(NUM_CORES)
|
MAKEFLAGS += -j$(NUM_CORES) -l$(NUM_CORES)
|
||||||
MAKEFLAGS += --silent
|
MAKEFLAGS += --silent
|
||||||
|
|
||||||
SHELL:= /bin/bash
|
SHELL := $(shell which bash)
|
||||||
.SHELLFLAGS = -eu -o pipefail -c
|
.SHELLFLAGS = -eu -o pipefail -c
|
||||||
|
|
||||||
DOCKER_CLI ?= docker
|
DOCKER_CLI ?= docker
|
||||||
|
|||||||
Reference in New Issue
Block a user