Skip to content

Commit

Permalink
Merge pull request #2944 from target/cleanup-shasum-noise
Browse files Browse the repository at this point in the history
dev: fix "Command not found" noise
  • Loading branch information
mastercactapus authored Apr 19, 2023
2 parents 00f1170 + 07f80ff commit 980f7f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LOG_DIR=
GOPATH:=$(shell go env GOPATH)

# Use sha256sum on linux and shasum -a 256 on mac
SHA_CMD := $(shell if [ -x "$(shell command -v sha256sum)" ]; then echo "sha256sum"; else echo "shasum -a 256"; fi)
SHA_CMD := $(shell if [ -x "$(shell command -v sha256sum 2>/dev/null)" ]; then echo "sha256sum"; else echo "shasum -a 256"; fi)

export CY_ACTION = open
export CY_BROWSER = chrome
Expand Down

0 comments on commit 980f7f8

Please sign in to comment.