Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add quiet option to git clone #201

Open
wants to merge 1 commit into
base: openj9
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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