diff options
author | Souza, Jose <jose.souza@intel.com> | 2018-04-04 13:25:53 -0700 |
---|---|---|
committer | Petri Latvala <petri.latvala@intel.com> | 2018-04-17 11:22:47 +0300 |
commit | 756e8c7386f7fb24cc46dfb14145183b2ee58327 (patch) | |
tree | ba70a1983087a1b9a7992ad74fa31202fa422607 /scripts | |
parent | 8b77704db49167f7ebfd1c470d9c129d3b862cb6 (diff) |
scripts: Use https URL to download piglit
This makes life easier for users behind network proxies. A simple
'export https_proxy=<proxy url>' will make this works, today user
needs to do a more complicated setup in ssh/git with proxy
information.
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/run-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh index fe153934..4209dd8c 100755 --- a/scripts/run-tests.sh +++ b/scripts/run-tests.sh @@ -49,7 +49,7 @@ fi IGT_TEST_ROOT="`readlink -f ${IGT_TEST_ROOT}`" function download_piglit { - git clone git://anongit.freedesktop.org/piglit "$ROOT/piglit" + git clone https://anongit.freedesktop.org/git/piglit.git "$ROOT/piglit" } function run_piglit # as-root <args> |