From ccb64c9af9c50b1dd38b4e0156e24fde9e279e35 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 15 Dec 2014 03:43:47 -0800 Subject: [PATCH] Move symlinking to before stuff is installed. --- tasks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/__init__.py b/tasks/__init__.py index c0c67580..21757db9 100644 --- a/tasks/__init__.py +++ b/tasks/__init__.py @@ -17,11 +17,11 @@ ns.add_collection(linux) def setup(ctx): ctx.config['run']['pty'] = False ctx.config['run']['warn'] = True + dotfiles(ctx, 'f') if 'darwin' in sys.platform: osx.setup(ctx) else: linux.setup(ctx) - dotfiles(ctx, 'f') install_python_libraries(ctx) powerline(ctx) install_npm_libraries(ctx)