mirror of
https://github.com/powerline/powerline.git
synced 2025-07-27 07:44:36 +02:00
Do not add fish and dash to $TEST_ROOT/path
This commit is contained in:
parent
5a3e19847e
commit
225ed1f230
@ -227,7 +227,17 @@ if which "$POWERLINE_RC_EXE" >/dev/null ; then
|
|||||||
ln -s "$(which $POWERLINE_RC_EXE)" "$TEST_ROOT/path/rc"
|
ln -s "$(which $POWERLINE_RC_EXE)" "$TEST_ROOT/path/rc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for exe in bash zsh busybox fish tcsh mksh dash ; do
|
exes="bash zsh busybox tcsh mksh"
|
||||||
|
|
||||||
|
if test -z "$TRAVIS_JOB_NUMBER" ; then
|
||||||
|
# For some reason fish does not work on travis
|
||||||
|
exes="$exes fish"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# dash has some problems with job control
|
||||||
|
#exes="$exes dash"
|
||||||
|
|
||||||
|
for exe in $exes ; do
|
||||||
if which $exe >/dev/null ; then
|
if which $exe >/dev/null ; then
|
||||||
if test "$exe" = "fish" ; then
|
if test "$exe" = "fish" ; then
|
||||||
fish_version="$(fish --version 2>&1)"
|
fish_version="$(fish --version 2>&1)"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user