diff options
| author | Joey Hess <joey@kitenet.net> | 2014-08-19 15:02:12 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-08-19 15:02:12 -0400 |
| commit | 7d59dee4690297154f6924a04949413ddea8a17b (patch) | |
| tree | 988d0a3e67a0164b2f39ab22683a089f8b6eef95 /Makefile | |
| parent | b6c5f547419ce95d20453f30403e1a5860720fe6 (diff) | |
local repo fully working now
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -23,9 +23,13 @@ install: install -d $(DESTDIR)/usr/bin $(DESTDIR)/usr/src/propellor install -s dist/build/propellor/propellor $(DESTDIR)/usr/bin/propellor $(CABAL) sdist - cat dist/propellor-*.tar.gz | \ - (cd $(DESTDIR)/usr/src/propellor && tar zx --strip-components=1) - cd $(DESTDIR)/usr/src/propellor && git init && git add . && git commit -m "current version of propellor" + mkdir -p dist/gittmp + cat dist/propellor-*.tar.gz | (cd dist/gittmp && tar zx --strip-components=1) + cd dist/gittmp && git init && \ + git add . \ + && git commit -m "distributed version of propellor" \ + && git bundle create $(DESTDIR)/usr/src/propellor/propellor.git master HEAD + rm -rf dist/gittmp clean: rm -rf dist Setup tags propellor privdata/local |
