diff --git a/.bzrignore b/.bzrignore index bc0ffae0..aed6c914 100644 --- a/.bzrignore +++ b/.bzrignore @@ -1 +1,2 @@ +bin revision diff --git a/Makefile b/Makefile index 5026b768..224efe1c 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,14 @@ lint: @flake8 --exclude hooks/charmhelpers hooks @charm proof -sync: - @charm-helper-sync -c charm-helpers.yaml +bin/charm_helpers_sync.py: + @mkdir -p bin + @bzr cat lp:charm-helpers/tools/charm_helpers_sync/charm_helpers_sync.py \ + > bin/charm_helpers_sync.py +sync: bin/charm_helpers_sync.py + @$(PYTHON) bin/charm_helpers_sync.py -c charm-helpers.yaml + +publish: lint + bzr push lp:charms/rabbitmq-server + bzr push lp:charms/trusty/rabbitmq-server