diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-09-27 15:51:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-09-27 15:51:15 -0300 |
commit | 6848013c089d3e2bfeddf5c4e0b7e49ddbce8e95 (patch) | |
tree | 364d80b1d87eecb7de31635838924832a9994a22 | |
parent | bb2eae6f3a1f44fef0a05000d79c298442fa24c7 (diff) | |
download | puppet-bootstrap-6848013c089d3e2bfeddf5c4e0b7e49ddbce8e95.tar.gz puppet-bootstrap-6848013c089d3e2bfeddf5c4e0b7e49ddbce8e95.tar.bz2 |
Use git clone --recursive for puppet modules
-rwxr-xr-x | bin/mrconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mrconfig b/bin/mrconfig index ffb0438..bb4ae7c 100755 --- a/bin/mrconfig +++ b/bin/mrconfig @@ -21,7 +21,7 @@ curl --stderr - $URL | grep "^puppet-" | while read module; do if [ "$module" != "$bootstrap" ]; echo "Processing $folder..." - mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder" + mr config puppet/modules/$folder checkout="git clone --recursive git://$GIT/$module $folder" fi done |