Browse Source

travis: use quotation for dpkg command

git-svn-id: http://svn.redmine.org/redmine/trunk@14829 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.2.0
Toshi MARUYAMA 8 years ago
parent
commit
f9b2d30b4b
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      .travis.yml
  2. 1
    1
      test/travis/install-openldap.sh

+ 1
- 1
.travis.yml View File

@@ -102,7 +102,7 @@ before_install:
fi
- "sudo apt-get update -qq"
- "sudo apt-get --no-install-recommends install bzr cvs git mercurial subversion"
- dpkg -l *mysql*
- dpkg -l '*mysql*'
- if [[ $DB =~ (mariadb|mysql-5\.[67]) ]] ;
then
sudo service mysql stop ;

+ 1
- 1
test/travis/install-openldap.sh View File

@@ -1,7 +1,7 @@
#! /bin/sh

DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes slapd ldap-utils
dpkg -l *slapd* *ldap-utils*
dpkg -l '*slapd*' '*ldap-utils*'

TOP_DIR=`dirname $0`/../..


Loading…
Cancel
Save