Skip to content

Commit

Permalink
travis: fix manpath install on centos6 container
Browse files Browse the repository at this point in the history
  • Loading branch information
xdelaruelle committed Oct 14, 2017
1 parent 99faaff commit e8d2656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ before_install: |
docker run --name $CONTAINER --detach --rm -i -t -w /modules $DOCKER_IMAGE /bin/bash
case "${OS_NAME}" in
centos)
if [ $OS_VERSION -eq 6 ]; then SPHINX_PKG='python-sphinx10'; else SPHINX_PKG='python-sphinx'; fi
docker exec $CONTAINER yum install -y tcsh zsh ksh tcl make wget perl $SPHINX_PKG git dejagnu man-db rpm-build bzip2 $EXTRA_PKGS &&
if [ $OS_VERSION -eq 6 ]; then SPHINX_PKG='python-sphinx10' MAN_PKG='man'; else SPHINX_PKG='python-sphinx' MAN_PKG='man-db'; fi
docker exec $CONTAINER yum install -y tcsh zsh ksh tcl make wget perl $SPHINX_PKG git dejagnu $MAN_PKG rpm-build bzip2 $EXTRA_PKGS &&
docker exec $CONTAINER wget -O /etc/yum.repos.d/shells_fish_release_2.repo http://download.opensuse.org/repositories/shells:fish:release:2/CentOS_${OS_VERSION}/shells:fish:release:2.repo &&
docker exec $CONTAINER yum install -y fish ;;
opensuse)
Expand Down

0 comments on commit e8d2656

Please sign in to comment.