From 4cecb5e1b4e2403b93921af33ee72caec57d903d Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 28 Apr 2015 13:42:55 -0700 Subject: [PATCH] fixup link_emacs. --- tasks/__init__.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tasks/__init__.py b/tasks/__init__.py index e2a3c3a6..51c162ef 100644 --- a/tasks/__init__.py +++ b/tasks/__init__.py @@ -45,11 +45,13 @@ def dropbox_dotfiles(ctx, flags='f'): flags )) + @ctask def link_emacs(ctx, flags='f'): - link_filenames(ctx, [('~/Dropbox/configs/custom-before.el', '~/.emacs.d/custom-before.el')], force=True) - link_filenames(ctx, [('~/Dropbox/configs/elpa', '~/.emacs.d/elpa')], force=True) - link_filenames(ctx, [('~/Dropbox/configs/custom-after.el', '~/.emacs.d/custom-after.el')], force=True) + link_filenames(ctx, [('~/Dropbox/configs/custom-before.el', '~/.emacs.d/custom-before.el'), + # ('~/Dropbox/configs/elpa', '~/.emacs.d/elpa'), + ('~/Dropbox/configs/custom-after.el', '~/.emacs.d/custom-after.el')], + force=True) @ctask @@ -147,3 +149,4 @@ ns.add_task(powerline) ns.add_task(setup) ns.add_task(vimstall) ns.add_task(fix_dropbox_permissions) +ns.add_task(link_emacs)