Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
Replace corny/ytdl by rylio/ytdl
Browse files Browse the repository at this point in the history
  • Loading branch information
corny committed Dec 10, 2019
1 parent ae7a627 commit 22aa2a2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:alpine

COPY . $GOPATH/src/github.com/corny/ytdl/
COPY . $GOPATH/src/github.com/rylio/ytdl/
RUN apk update && apk upgrade && \
apk add --no-cache git
RUN go get -d github.com/corny/ytdl/cmd/ytdl/
RUN go get -d github.com/rylio/ytdl/cmd/ytdl/
RUN apk del git
WORKDIR $GOPATH/src/github.com/corny/ytdl/cmd/ytdl/
WORKDIR $GOPATH/src/github.com/rylio/ytdl/cmd/ytdl/
RUN go build -o /go/bin/ytdl
WORKDIR /ytdl/

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

Go library for downloading YouTube videos

[![Documentation](https://godoc.org/github.com/corny/ytdl?status.svg)](http://godoc.org/github.com/corny/ytdl)
[![CircleCI](https://circleci.com/gh/corny/ytdl.svg?style=shield)](https://circleci.com/gh/corny/ytdl)
[![Codecov](https://codecov.io/gh/corny/ytdl/branch/master/graph/badge.svg)](https://codecov.io/gh/corny/ytdl)
[![Go ReportCard](http://goreportcard.com/badge/corny/ytdl)](http://goreportcard.com/report/corny/ytdl)
[![Documentation](https://godoc.org/github.com/rylio/ytdl?status.svg)](http://godoc.org/github.com/rylio/ytdl)
[![CircleCI](https://circleci.com/gh/rylio/ytdl.svg?style=shield)](https://circleci.com/gh/rylio/ytdl)
[![Codecov](https://codecov.io/gh/rylio/ytdl/branch/master/graph/badge.svg)](https://codecov.io/gh/rylio/ytdl)
[![Go ReportCard](http://goreportcard.com/badge/rylio/ytdl)](http://goreportcard.com/report/rylio/ytdl)


## Example
Expand All @@ -17,7 +17,7 @@ import (
"fmt"
"os"

"github.com/corny/ytdl"
"github.com/rylio/ytdl"
)

func main() {
Expand All @@ -35,7 +35,7 @@ func main() {

## ytdl CLI

- To install: `go get -u github.com/corny/ytdl/...`
- To install: `go get -u github.com/rylio/ytdl/...`

- Or use Docker image `docker pull brucewangno1/ytdl:1.0`

Expand Down
2 changes: 1 addition & 1 deletion cmd/ytdl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"encoding/json"

"github.com/corny/ytdl"
"github.com/rylio/ytdl"
"github.com/mattn/go-isatty"
"github.com/olekukonko/tablewriter"
"github.com/rs/zerolog"
Expand Down
2 changes: 1 addition & 1 deletion cmd/ytdl/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"text/template"

"github.com/corny/ytdl"
"github.com/rylio/ytdl"
)

func parseFilter(filterString string) (func(ytdl.FormatList) ytdl.FormatList, error) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/corny/ytdl
module github.com/rylio/ytdl

go 1.13

Expand Down

0 comments on commit 22aa2a2

Please sign in to comment.