From e9c2c21d904a626f6f0f74671a0b561177297adc Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 15 Dec 2014 17:21:21 -0800 Subject: [PATCH] Fix link_dropbox_other --- tasks/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/__init__.py b/tasks/__init__.py index 999110f1..473ccc56 100644 --- a/tasks/__init__.py +++ b/tasks/__init__.py @@ -88,7 +88,7 @@ def link_dropbox_other(ctx, force=False): link_filenames(ctx, link_pairs, force) -def link_filenames(ctx, link_pairs, force=False) +def link_filenames(ctx, link_pairs, force=False): for source, destination in link_pairs: destination = os.path.expanduser(destination) source = os.path.expanduser(source) @@ -115,9 +115,10 @@ def customize_user_settings(ctx): ns.add_task(change_shell) ns.add_task(customize_user_settings) ns.add_task(dotfiles) +ns.add_task(dropbox_dotfiles) ns.add_task(install_npm_libraries) ns.add_task(install_python_libraries) -ns.add_task(dropbox_dotfiles) +ns.add_task(link_dropbox_other) ns.add_task(powerline) ns.add_task(setup) ns.add_task(vimstall)