diff options
author | Kylie McClain <somasis@exherbo.org> | 2015-08-10 16:04:05 -0400 |
---|---|---|
committer | Kylie McClain <somasis@exherbo.org> | 2015-08-10 22:24:47 -0400 |
commit | 34dd27665fe47acacf889cbb1803b921e2cba3d7 (patch) | |
tree | 52880a2bcbd20708eb3dab3311132dcd9507bdb6 /Makefile | |
parent | 85dff26eb7e8cee3cffbe74149cc9cda1643e159 (diff) |
Makefile: add sync target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -109,3 +109,8 @@ uninstall: $(foreach PLANK_THEME,$(PLANK),rm -rf $(DESTDIR)$(PREFIX)/share/plank/$(PLANK_THEME);) $(foreach COLOR,$(COLORS),rm -rf $(DESTDIR)$(PREFIX)/share/themes/Shiki-$(COLOR);) $(foreach WM_THEME,$(WM),rm -rf $(DESTDIR)$(PREFIX)/share/themes/$(WM_THEME);) + +sync: + git -C $(BASE) pull origin master + git add $(BASE) + git commit -m 'Synchronize with upstream $(BASE)' |