aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKylie McClain <somasis@exherbo.org>2015-08-10 16:04:05 -0400
committerKylie McClain <somasis@exherbo.org>2015-08-10 22:24:47 -0400
commit34dd27665fe47acacf889cbb1803b921e2cba3d7 (patch)
tree52880a2bcbd20708eb3dab3311132dcd9507bdb6
parent85dff26eb7e8cee3cffbe74149cc9cda1643e159 (diff)
Makefile: add sync target
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 75ec893..f2484ba 100644
--- a/Makefile
+++ b/Makefile
@@ -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)'