diff --git a/Makefile b/Makefile index 32ee6a3..08c430d 100755 --- a/Makefile +++ b/Makefile @@ -24,7 +24,9 @@ fmt: # Run version update check vsn: - @diff=$$(git diff-index master version.json); \ + @diff1=$$(git branch -a); \ + echo $$diff1; \ + diff=$$(git diff-index master version.json); \ if [[ -z "$$diff" ]]; then \ echo "⇒ You need to update the api version in the version.json file"; \ exit 1;\