public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] make.sh: Suppress 'ls :cannot access *.bz2'-message
Date: Mon, 25 May 2020 10:26:09 +0100	[thread overview]
Message-ID: <2532D20A-29BC-44DD-A22A-35DFD9205938@ipfire.org> (raw)
In-Reply-To: <20200524221350.17476-1-matthias.fischer@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1078 bytes --]

Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>

> On 24 May 2020, at 23:13, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote:
> 
> The message "ls: cannot access '*.bz2': No such file or directory" comes
> from the 'ls' command prior to creating the *.md5-files for *.bz2, *.img.xz
> and *.iso files.
> 
> But on most builds we have especially no more bzip2 compressed images anymore.
> 
> This message can usually be ignored and is just irritating.
> 
> Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
> ---
> make.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/make.sh b/make.sh
> index 4acce807f..2e8faa38d 100755
> --- a/make.sh
> +++ b/make.sh
> @@ -1707,7 +1707,7 @@ buildpackages() {
>   # remove not useable iso on armv5tel (needed to build flash images)
>   [ "${BUILD_ARCH}" = "armv5tel" ] && rm -rf *.iso
> 
> -  for i in `ls *.bz2 *.img.xz *.iso`; do
> +  for i in $(ls *.bz2 *.img.xz *.iso 2>/dev/null); do
> 	md5sum $i > $i.md5
>   done
>   cd $PWD
> -- 
> 2.18.0
> 


      reply	other threads:[~2020-05-25  9:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-24 22:13 Matthias Fischer
2020-05-25  9:26 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2532D20A-29BC-44DD-A22A-35DFD9205938@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox