diff options
author | Reuben Thomas <rrt@sc3d.org> | 2014-07-26 23:17:29 +0100 |
---|---|---|
committer | Reuben Thomas <rrt@sc3d.org> | 2014-07-26 23:17:29 +0100 |
commit | 719db297b416d06d1438525f93b71c4b0eb5b484 (patch) | |
tree | 67d589753b823c6179f428ec637910272eb139e6 | |
parent | 6876d60cdd17a7336c35df2e1769f9da0a98a324 (diff) | |
download | plptools-719db297b416d06d1438525f93b71c4b0eb5b484.tar.gz plptools-719db297b416d06d1438525f93b71c4b0eb5b484.tar.bz2 plptools-719db297b416d06d1438525f93b71c4b0eb5b484.zip |
Fix a missing && in Makefile.am
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 94b754a..df552da 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,5 +20,5 @@ install-exec-local: release: distcheck git diff && \ - git tag rel-`echo $(VERSION) | sed -e 's/\./-/g'` && git push --tag \ + git tag rel-`echo $(VERSION) | sed -e 's/\./-/g'` && git push --tag && \ woger sourceforge package=$(PACKAGE) version=$(VERSION) notes=release-notes-$(VERSION) dist_type="tar.gz" |