Skip to content

Commit

Permalink
Add quiet option to git clone
Browse files Browse the repository at this point in the history
Signed-off-by: Violeta Sebe <[email protected]>
  • Loading branch information
vsebe committed Jul 30, 2019
1 parent 91be204 commit 24431b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions closed/get_j9_source.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# ===========================================================================
# (c) Copyright IBM Corp. 2017, 2018 All Rights Reserved
# (c) Copyright IBM Corp. 2017, 2019 All Rights Reserved
# ===========================================================================
#
# This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -130,7 +130,7 @@ for i in "${!git_urls[@]}" ; do
fi
cd - > /dev/null
else
git_clone_command="git clone --recursive -b ${branch} ${git_urls[$i]} ${i}"
git_clone_command="git clone -q --recursive -b ${branch} ${git_urls[$i]} ${i}"
commands[$i]=$git_clone_command

echo
Expand Down

0 comments on commit 24431b2

Please sign in to comment.