From 5533e0c430a6cb8b8716b8fbb0a85fd1074307e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Mon, 9 Jan 2017 18:28:32 +0100 Subject: [PATCH] removed superfluous && --- install-zammad.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-zammad.sh b/install-zammad.sh index 6f8907e..79a90d8 100644 --- a/install-zammad.sh +++ b/install-zammad.sh @@ -9,7 +9,7 @@ cp -R /tmp/zammad/.[!.]* ${ZAMMAD_DIR} cd ${ZAMMAD_DIR} rm -rf /tmp/zammad bundle install --without test development mysql -&& contrib/packager.io/fetch_locales.rb +contrib/packager.io/fetch_locales.rb sed -e 's#.*adapter: postgresql# adapter: nulldb#g' -e 's#.*username:.*# username: postgres#g' -e 's#.*password:.*# password: \n host: postgresql\n#g' < config/database.yml.pkgr > config/database.yml bundle exec rake assets:precompile sed -e 's#.*adapter: postgresql# adapter: postgresql#g' -e 's#.*username:.*# username: postgres#g' -e 's#.*password:.*# password: \n host: postgresql\n#g' < config/database.yml.pkgr > config/database.yml