From 65d874c03831a8204c28104187c9a302c114a131 Mon Sep 17 00:00:00 2001 From: Sebastian Gumprich Date: Mon, 17 Jul 2017 21:48:01 +0200 Subject: [PATCH] update version --- install | 1 + scripts/_common.sh | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 install diff --git a/install b/install new file mode 100644 index 0000000..d80b2d8 --- /dev/null +++ b/install @@ -0,0 +1 @@ +yunohost app install /vagrant/monica_ynh/ --debug -n -a "domain=ynh2.dev&path=/&admin=basti&is_public=0&language=en" diff --git a/scripts/_common.sh b/scripts/_common.sh index 718febc..44d84be 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -3,7 +3,7 @@ # # monica git version -VERSION="v0.3.0" +VERSION="v0.4.1" # Remote URL to fetch monica source tarball MONICA_SOURCE_URL="https://github.com/monicahq/monica/archive/${VERSION}.tar.gz" @@ -95,11 +95,11 @@ init_composer() { # install composer curl -sS https://getcomposer.org/installer \ | COMPOSER_HOME="${DESTDIR}/.composer" \ - sudo /usr/bin/php7.0 -- --install-dir="$DESTDIR" \ + sudo /usr/bin/php7.0 -- --quiet --install-dir="$DESTDIR" \ || ynh_die "Unable to install Composer" # update dependencies to create composer.lock - exec_composer "$DESTDIR" install --no-dev --prefer-dist \ + exec_composer "$DESTDIR" install --quiet --no-dev --prefer-dist \ || ynh_die "Unable to update monica core dependencies" }