diff --git a/Makefile b/Makefile index 44d052c..3e675d8 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Use of this source code is governed by the Apache License 2.0 # that can be found in the COPYING file. -.PHONY: actionpacks lint +.PHONY: actionpacks dist lint lint: flake8 @@ -19,4 +19,7 @@ actionpacks: actionpacks-mac: mkdir -p gen find . -mindepth 1 -maxdepth 1 -name "*action-pack" -type d -execdir tar --disable-copyfile -cf {}.tar {} \; - mv *.tar gen \ No newline at end of file + mv *.tar gen + +dist: actionpacks + cd gen && sha256sum * > CHECKSUMS.sha256 \ No newline at end of file