diff options
author | Erik Sjölund <erik.sjolund@gmail.com> | 2022-01-15 20:57:59 +0100 |
---|---|---|
committer | Erik Sjölund <erik.sjolund@gmail.com> | 2022-01-15 22:08:42 +0100 |
commit | 3c2a5947c243ccbc611c1846c685b73de4462242 (patch) | |
tree | a58b961c64c2bb1e486e30f58de8ab1b048f80e6 /test/system/070-build.bats | |
parent | 3c9e41bb5393e0a857d8755bb50345544cc31b50 (diff) | |
download | podman-3c2a5947c243ccbc611c1846c685b73de4462242.tar.gz podman-3c2a5947c243ccbc611c1846c685b73de4462242.tar.bz2 podman-3c2a5947c243ccbc611c1846c685b73de4462242.zip |
fix default branch links
* Replace https://github.com/containers/podman/blob/master
with https://github.com/containers/podman/blob/main
to match the new default branch "main". Previously
the default branch was "master". This is the only
occurence found in the code.
* Replace https://raw.githubusercontent.com/containers/libpod/master
with https://raw.githubusercontent.com/containers/podman/main
Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r-- | test/system/070-build.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats index 5e920506d..d5f7365e8 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -194,7 +194,7 @@ EOF cat >$tmpdir/Dockerfile <<EOF FROM $IMAGE -ADD https://github.com/containers/podman/blob/master/README.md /tmp/ +ADD https://github.com/containers/podman/blob/main/README.md /tmp/ EOF run_podman build -t add_url $tmpdir run_podman run --rm add_url stat /tmp/README.md |