A && B || C is not the same as if-then-else
2020-12-26
I have been thought that if-then-else statement can be written in one line by using A && B || C
but I was wrong.
To speed up my Drone CI time, I configured the static-check step to only run when there are some .go
files have been changed:
1git --no-pager diff --name-only ${DRONE_COMMIT_LINK##*/} | grep -q "\.go$" && golangci-lint run --deadline 2m -v ./... || true
I was thought that A && B || C
is the same as: