diff --git a/Easkfile b/Easkfile index 9ecc84f..500383f 100644 --- a/Easkfile +++ b/Easkfile @@ -1,3 +1,5 @@ +;; -*- mode: eask; lexical-binding: t -*- + (package "magit-standup" "0.3.0" "Collect recent git commits for standup notes") diff --git a/Makefile b/Makefile index e622828..cb498bf 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ lint: .deps eask lint package + eask lint checkdoc test: .compile eask test buttercup @@ -24,7 +25,7 @@ release: lint test git switch -c release/v$(VERSION) sed 's/^;; Version: .*/;; Version: $(VERSION)/' magit-standup.el > magit-standup.el.new mv magit-standup.el.new magit-standup.el - sed '2s/"[0-9][0-9.]*"/"$(VERSION)"/' Easkfile > Easkfile.new + sed 's/^\( *\)"[0-9][0-9.]*"$$/\1"$(VERSION)"/' Easkfile > Easkfile.new mv Easkfile.new Easkfile @grep -qx ";; Version: $(VERSION)" magit-standup.el @grep -qx ' "$(VERSION)"' Easkfile