From 1629658a12d013e75cc459f9dffddee92003ef64 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 3 May 2022 22:43:18 +0200 Subject: [PATCH] refactor: switch to forked thegeeklab/drone-plugin-lib (#2) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 77ce6d5..cfaa524 100644 --- a/README.md +++ b/README.md @@ -13,17 +13,17 @@ Helper library to reduce the boilerplate code for writing Drone CI plugins. ### Download the package ```Shell -go get -d github.com/drone-plugins/drone-plugin-lib/errors -go get -d github.com/drone-plugins/drone-plugin-lib/urfave -go get -d github.com/drone-plugins/drone-plugin-lib/drone +go get -d github.com/thegeeklab/drone-plugin-lib/errors +go get -d github.com/thegeeklab/drone-plugin-lib/urfave +go get -d github.com/thegeeklab/drone-plugin-lib/drone ``` ### Import the package ```Go -import "github.com/drone-plugins/drone-plugin-lib/errors" -import "github.com/drone-plugins/drone-plugin-lib/urfave" -import "github.com/drone-plugins/drone-plugin-lib/drone" +import "github.com/thegeeklab/drone-plugin-lib/errors" +import "github.com/thegeeklab/drone-plugin-lib/urfave" +import "github.com/thegeeklab/drone-plugin-lib/drone" ``` ## Contributors