Skip to content

Commit c326357

Browse files
committed
Fix references to default branch to use main.
1 parent 9acee11 commit c326357

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Unit Tests"
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
permissions:
88
contents: write
99

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ install:
77
script: BINARY_VALIDATION=true bin/test --compilers=2
88
branches:
99
only:
10-
- master
10+
- main

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Cloud Foundry CLI Plugin Repository (CLIPR)[![Build Status](https://travis-ci.org/cloudfoundry/cli-plugin-repo.svg?branch=master)](https://travis-ci.org/cloudfoundry/cli-plugin-repo)
1+
# Cloud Foundry CLI Plugin Repository (CLIPR)[![Build Status](https://travis-ci.org/cloudfoundry/cli-plugin-repo.svg?branch=main)](https://travis-ci.org/cloudfoundry/cli-plugin-repo)
22

33
Plugin Downloads Server Uptime
44

@@ -143,4 +143,4 @@ This process can get a little tedious if you do it manually every time, that's w
143143

144144
## Running your own Plugin Repo Server
145145

146-
Included as part of this repository is the CLI Plugin Repo (CLIPR), a reference implementation of a repo server. For information on how to run CLIPR or how to write your own, [please see the CLIPR documentation here.](https://github.com/cloudfoundry/cli-plugin-repo/blob/master/docs/CLIPR.md)
146+
Included as part of this repository is the CLI Plugin Repo (CLIPR), a reference implementation of a repo server. For information on how to run CLIPR or how to write your own, [please see the CLIPR documentation here.](https://github.com/cloudfoundry/cli-plugin-repo/blob/main/docs/CLIPR.md)

docs/CLIPR.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ Alternatively, you can create your own plugin repo implementation. The server mu
6464
"binaries": [
6565
{
6666
"platform":"osx",
67-
"url":"https://github.com/johndoe/plugin-repo/raw/master/bin/osx/echo",
67+
"url":"https://github.com/johndoe/plugin-repo/raw/main/bin/osx/echo",
6868
"checksum":"2a087d5cddcfb057fbda91e611c33f46"
6969
},
7070
{
7171
"platform":"win64",
72-
"url":"https://github.com/johndoe/plugin-repo/raw/master/bin/windows64/echo.exe",
72+
"url":"https://github.com/johndoe/plugin-repo/raw/main/bin/windows64/echo.exe",
7373
"checksum":"b4550d6594a3358563b9dcb81e40fd66"
7474
}
7575
]

0 commit comments

Comments
 (0)