From 317775e872e2027e378ac74bc9c71696a2404090 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 15 Apr 2015 16:48:50 +0200 Subject: [PATCH] scripts/Bootstrap/Pmodules/modulecmd.in: - bugfix in subcommand_search: argument --src was not handled correctly --- scripts/Bootstrap/Pmodules/modulecmd.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Bootstrap/Pmodules/modulecmd.in b/scripts/Bootstrap/Pmodules/modulecmd.in index bf4e6ed..c5b97ea 100755 --- a/scripts/Bootstrap/Pmodules/modulecmd.in +++ b/scripts/Bootstrap/Pmodules/modulecmd.in @@ -1272,7 +1272,7 @@ subcommand_search() { use_releases="${available_releases}" ;; --src ) - src_prefix=$1 + src_prefix=$2 check_pmodules_directories "${src_prefix}" shift ;;