UltiSnips/scripts/install_packages.sh
Holger Rapp 539c557680
Move travis testing into docker for better consistency. (#950)
This now only tests python2 on Vim 7.4, 8.0 and git. No Neovim (that has been broken for a long time anyways) and no longer any python3 testing. But hey, we have green tests again!
2018-04-01 00:56:34 +02:00

12 lines
121 B
Bash
Executable File

#!/bin/sh
set -o errexit
set -o verbose
apt-get update
apt-get install -y \
g++ \
tmux \
git
apt-get clean