diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-07-10 22:33:47 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-07-10 22:33:47 -0400 |
| commit | 0a635499e3c35b034f81f960640caacf88c732f0 (patch) | |
| tree | 9b9ab3e2ca27dc04667ba3b51582870d04e1a07f | |
| parent | a26da2081fce15ce4edae4e8016ebe343fe76aab (diff) | |
fix syntax
| -rw-r--r-- | Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -17,15 +17,15 @@ install: cat dist/propellor-*.tar.gz | (cd dist/gittmp && tar zx --strip-components=1) # cabal sdist does not preserve symlinks, so copy over file cd dist/gittmp && for f in $$(find -type f); do rm -f $$f; cp -a ../../$$f $$f; done - export GIT_AUTHOR_NAME=build && \ - export GIT_AUTHOR_EMAIL=build@buildhost && \ - export GIT_COMMITTER_NAME=build && \ - export GIT_COMMITTER_EMAIL=build@buildhost && \ - cd dist/gittmp && git init && \ - && git add . \ - && git commit -q -m "distributed version of propellor" \ - && git bundle create $(DESTDIR)/usr/src/propellor/propellor.git master HEAD \ - && git show-ref master --hash > $(DESTDIR)/usr/src/propellor/head + export GIT_AUTHOR_NAME=build \ + && export GIT_AUTHOR_EMAIL=build@buildhost \ + && export GIT_COMMITTER_NAME=build \ + && export GIT_COMMITTER_EMAIL=build@buildhost \ + && cd dist/gittmp && git init \ + && git add . \ + && git commit -q -m "distributed version of propellor" \ + && git bundle create $(DESTDIR)/usr/src/propellor/propellor.git master HEAD \ + && git show-ref master --hash > $(DESTDIR)/usr/src/propellor/head rm -rf dist/gittmp clean: |
