Run into an issue where the following prints an error message:

GIT_TAG  != git describe --tags --abbrev=0 --exact-match 2>/dev/null

...

*** Warning in /home/ag/src/helm: "git describe --tags --abbrev=0
--exact-match 2>/dev/null" returned non-zero status (Makefile:36)

I can address this by doing:

GIT_TAG  != (git describe --tags --abbrev=0 --exact-match 2>/dev/null)
|| echo -n

Is there a better way to handle this?

Thanks.

-ag

Reply via email to