Skip to content

Commit 3dc05c8

Browse files
author
Philipp Heckel
committed
Remove Go 1.16 RC1 stuff
1 parent 2901800 commit 3dc05c8

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/test.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ jobs:
77
- name: Install Go
88
uses: actions/setup-go@v2
99
with:
10-
go-version: '1.15.x'
10+
go-version: '1.16.x'
1111
- name: Checkout code
1212
uses: actions/checkout@v2
13-
- name: Install go1.16
14-
run: go get golang.org/dl/go1.16rc1 && go1.16rc1 download
1513
- name: Run tests, formatting, vetting and linting
1614
run: make check
1715
- name: Run and upload coverage to codecov.io

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ rpm -ivh https://github.com/binwiederhier/pcopy/releases/download/v0.5.4/pcopy_0
5757
docker run --rm -it binwiederhier/pcopy
5858
```
5959

60-
**Go** (*requires Go 1.16rc1*)**:**
60+
**Go:**
6161
```bash
62-
go get golang.org/dl/go1.16rc1
63-
go1.16rc1 download
64-
go1.16rc1 get -u heckel.io/pcopy
62+
# requires Go 1.16
63+
go get -u heckel.io/pcopy
6564
```
6665

6766
**Manual install** (*any x86_64-based Linux*)**:**
@@ -313,12 +312,10 @@ Try 'pcopy COMMAND --help' for more information.
313312
```
314313

315314
## Building
316-
Building pcopy is dead simple, however it does need Go >=1.16rc1, because it uses [embed](https://tip.golang.org/pkg/embed/).
315+
Building pcopy is dead simple, however it does need Go >=1.16, because it uses [embed](https://tip.golang.org/pkg/embed/).
317316
Here's how you build it:
318317

319318
```
320-
go get golang.org/dl/go1.16rc1
321-
go1.16rc1 download
322319
make build-simple
323320
# Builds to dist/pcopy_linux_amd64/pcopy
324321
```

0 commit comments

Comments
 (0)