mirror of
https://github.com/powerline/powerline.git
synced 2025-12-05 04:40:05 +01:00
Changes: - Add main configuration, colors.json, almost full themes and colorschemes checks - Make powerline.lint.check return whether it had problems - Make powerline-lint fail if .check reported problems - Make tests run powerline-lint - Add the script to the list of the installed scripts Fixes #278
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
pip install .
|
|
if python -c 'import sys; sys.exit(1 * (sys.version_info[0] != 2))' ; then
|
|
# Python 2
|
|
pip install mercurial bzr
|
|
if python -c 'import sys; sys.exit(1 * (sys.version_info[1] >= 7))' ; then
|
|
# Python 2.6
|
|
pip install unittest2 argparse
|
|
fi
|
|
fi
|