diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-08-26 13:15:23 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-08-27 06:14:46 -0400 |
commit | 84694170402ff699065382ba2d2fb172c3b6c88f (patch) | |
tree | b7ff7565a879901bd2b888b80e2419898e1a6a17 /.ubuntu_prepare.sh | |
parent | 94c37d7d470871f9d63b32c97094f5faab1e8a08 (diff) | |
download | podman-84694170402ff699065382ba2d2fb172c3b6c88f.tar.gz podman-84694170402ff699065382ba2d2fb172c3b6c88f.tar.bz2 podman-84694170402ff699065382ba2d2fb172c3b6c88f.zip |
Globally replace http:// with https://
[NO TESTS NEEDED] Hopefully existing tests will find issues.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to '.ubuntu_prepare.sh')
-rw-r--r-- | .ubuntu_prepare.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.ubuntu_prepare.sh b/.ubuntu_prepare.sh index 7b7dd1bb1..1a5d1140f 100644 --- a/.ubuntu_prepare.sh +++ b/.ubuntu_prepare.sh @@ -33,7 +33,7 @@ done if [ $conmon -eq 1 ]; then # Build and install conmon from source echo "Building conmon ..." - git clone http://github.com/containers/conmon $conmon_source + git clone https://github.com/containers/conmon $conmon_source cd $conmon_source && make install PREFIX=/usr fi @@ -41,7 +41,7 @@ fi if [ $cni -eq 1 ]; then # Build and install containernetworking plugins from source echo "Building containernetworking-plugins..." - git clone http://github.com/containernetworking/plugins $cni_source + git clone https://github.com/containernetworking/plugins $cni_source cd $cni_source ./build.sh mkdir -p /usr/libexec/cni @@ -52,7 +52,7 @@ fi if [ $runc -eq 1 ]; then # Build and install runc echo "Building runc..." - git clone http://github.com/opencontainers/runc $runc_source + git clone https://github.com/opencontainers/runc $runc_source cd $runc_source make install PREFIX=/usr fi |