1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-31 12:49:38 +00:00

travis: use quotation for dpkg command

git-svn-id: http://svn.redmine.org/redmine/trunk@14829 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2015-11-07 14:04:12 +00:00
parent 48143b16d3
commit f9b2d30b4b
2 changed files with 2 additions and 2 deletions

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 ;

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`/../..