Skip to content

Commit

Permalink
configure: replace echo "" with plain echo
Browse files Browse the repository at this point in the history
When no arguments are given, echo prints a blank line.  These two are
equivalent:

  $ echo ""
  $ echo

Replace the former by the latter.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
  • Loading branch information
artagnon committed Jun 8, 2013
1 parent 1d06aea commit 8b87deb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions configure
Expand Up @@ -138,7 +138,7 @@ validate_opt () {
done
if [ "$arg" = "--help" ]
then
echo ""
echo
echo "No more help available for Configure options,"
echo "check the Wiki or join our IRC channel"
break
Expand Down Expand Up @@ -349,11 +349,11 @@ if [ "$1" = "--help" ]
then
HELP=1
shift
echo ""
echo
echo "Usage: $CFG_SELF [options]"
echo ""
echo
echo "Options:"
echo ""
echo
else
msg "recreating config.tmp"
echo '' >config.tmp
Expand Down Expand Up @@ -394,7 +394,7 @@ validate_opt

if [ $HELP -eq 1 ]
then
echo ""
echo
exit 0
fi

Expand Down

5 comments on commit 8b87deb

@bors
Copy link
Contributor

@bors bors commented on 8b87deb Jun 8, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 8b87deb Jun 8, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging artagnon/rust/configure = 8b87deb into auto

@bors
Copy link
Contributor

@bors bors commented on 8b87deb Jun 8, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

artagnon/rust/configure = 8b87deb merged ok, testing candidate = 59bbbe4

@bors
Copy link
Contributor

@bors bors commented on 8b87deb Jun 8, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 8b87deb Jun 8, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding incoming to auto = 59bbbe4

Please sign in to comment.