From 2979f23a78bb7ce96599904547502c2c922b45d4 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 1 Oct 2014 13:02:31 -0300 Subject: Updating mrconfig --- bin/mrconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/mrconfig b/bin/mrconfig index bb4ae7c..f525db3 100755 --- a/bin/mrconfig +++ b/bin/mrconfig @@ -15,13 +15,13 @@ rm -f .mrconfig touch .mrconfig # Fetch repository list and updtate mrconfig -curl --stderr - $URL | grep "^puppet-" | while read module; do +curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | while read module; do folder="`echo $module | sed -e 's/^puppet-//'`" folder="`basename $folder .git`" - if [ "$module" != "$bootstrap" ]; + if [ "$module" != "$bootstrap" ]; then echo "Processing $folder..." - mr config puppet/modules/$folder checkout="git clone --recursive git://$GIT/$module $folder" + mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder" fi done -- cgit v1.2.3