2
2
PY_FILES=$(shell find cloudinit bin tests tools -name "*.py" -type f )
3
3
PY_FILES+="bin/cloud-init"
5
7
YAML_FILES=$(shell find cloudinit bin tests tools -name "*.yaml" -type f )
6
8
YAML_FILES+=$(shell find doc/examples -name "cloud-config*.txt" -type f )
8
10
CHANGELOG_VERSION=$(shell $(CWD)/tools/read-version)
9
11
CODE_VERSION=$(shell python -c "from cloudinit import version; print version.version_string()")
41
28
@if [ "$(CHANGELOG_VERSION)" != "$(CODE_VERSION)" ]; then \