X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from dal-a2.localdomain (unknown [74.117.189.115]) by mail.alpinelinux.org (Postfix) with ESMTP id 9AEE0DC0146 for ; Thu, 30 Jan 2014 07:58:33 +0000 (UTC) Received: from ncopa-desktop.alpinelinux.org (3.203.202.84.customer.cdi.no [84.202.203.3]) (using SSLv3 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: ncopa@tanael.org) by dal-a2.localdomain (Postfix) with ESMTPSA id E7D0DBC1ADC; Thu, 30 Jan 2014 07:58:31 +0000 (UTC) Date: Thu, 30 Jan 2014 08:58:27 +0100 From: Natanael Copa To: Kozak Ivan Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] [PATCH] testing/dovecot-antispam-plugin: new aport Message-ID: <20140130085827.2adfd7db@ncopa-desktop.alpinelinux.org> In-Reply-To: <1391021688-9137-1-git-send-email-kozak-iv@yandex.ru> References: <1391021688-9137-1-git-send-email-kozak-iv@yandex.ru> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.20; x86_64-alpine-linux-uclibc) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 29 Jan 2014 22:54:48 +0400 Kozak Ivan wrote: > --- > testing/dovecot-antispam-plugin/APKBUILD | 46 ++++++++++++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > create mode 100644 testing/dovecot-antispam-plugin/APKBUILD ... > +prepare() { > + cd "$srcdir" > + msg "Connecting to Mercurial server..." > + > + if [[ -d "$_hgrepo" ]]; then if [[ ... ]] is bashism. I changed it to: if [ -d "$_hgrepo" ]; then and applied. Thanks! -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---