Get rid of tasks.sh Bump emacs.d for emacs jedi stuff

This commit is contained in:
2014-10-10 04:00:19 -07:00
parent f13874c9bf
commit 64688c0382
12 changed files with 163 additions and 193 deletions

14
tasks/linux.py Normal file
View File

@@ -0,0 +1,14 @@
from invoke import ctask
@ctask(default=True)
def all(ctx):
apt_get(ctx)
linux_pacakges = ('zsh', 'tmux', 'emacs24-nox', 'nmap', 'scala', 'sbt')
@ctask
def apt_get(ctx):
install_command = 'sudo apt-get -y install'
for package in linux_pacakges:
ctx.run('{0} {1}'.format(install_command, package), pty=False)