diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-01-20 21:06:07 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-01-20 21:06:07 -0500 |
commit | c5e5df24c5c00c360e8651c7d4530448a4a6f750 (patch) | |
tree | e06592a08a8992337d1733b7b79a75f68fee6014 | |
parent | 2234ca057cd9b12fb2f10631686fa43f8227feb0 (diff) |
Fix 'make publish'.
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 77d057c..17bcf42 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,8 +93,8 @@ EXTRA_DIST += \ examples/hello.bmp \ examples/controller.scm -publish: dist - gpg2 --sign --armor --yes guile-sdl2-$(VERSION).tar.gz && \ +publish: distcheck + gpg --sign --armor --yes guile-sdl2-$(VERSION).tar.gz && \ scp guile-sdl2-$(VERSION).tar.gz guile-sdl2-$(VERSION).tar.gz.asc \ blog@dthompson.us:/var/www/files/guile-sdl2/ |