From abb139b10c3f431bcebb1847621f97d7ec6249ce Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 13 Nov 2013 14:32:38 +0000 Subject: scripts/create-recipe: fix handling of --help If --help is specified as the first argument, show the standard help text instead of trying to process it as a URL. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- scripts/create-recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-recipe b/scripts/create-recipe index 5613e92cb9..b192990080 100755 --- a/scripts/create-recipe +++ b/scripts/create-recipe @@ -1794,7 +1794,7 @@ sub calculate_sums # Main program # -if ( @ARGV < 1 ) { +if ( @ARGV < 1 || $ARGV[0] eq "--help" ) { print "Usage: $0 [-r] \n"; exit(1); } -- cgit 1.2.3-korg