*: build paths to my repo

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2020-09-24 13:47:15 -04:00
parent 4b906a3877
commit 9dca822092
9 changed files with 12 additions and 11 deletions

View File

@ -1,7 +1,7 @@
# Go Omaha # Go Omaha
[![Build Status](https://travis-ci.org/coreos/go-omaha.svg?branch=master)](https://travis-ci.org/coreos/go-omaha) [![Build Status](https://travis-ci.org/coreos/go-omaha.svg?branch=master)](https://travis-ci.org/coreos/go-omaha)
[![GoDoc](https://godoc.org/github.com/coreos/go-omaha/omaha?status.svg)](https://godoc.org/github.com/coreos/go-omaha/omaha) [![GoDoc](https://godoc.org/git.thisco.de/vbatts/go-omaha/omaha?status.svg)](https://godoc.org/git.thisco.de/vbatts/go-omaha/omaha)
Implementation of the [omaha update protocol](https://github.com/google/omaha) in Go. Implementation of the [omaha update protocol](https://github.com/google/omaha) in Go.
@ -26,7 +26,7 @@ These differences include:
## `serve-package` ## `serve-package`
This project includes a very simple program designed to serve a single Container Linux package on the local host. It is intended to be used as a manual updater for a machine that is not able to use a full-fledged CoreUpdate instance. Binaries are available for each released version on the [releases page](https://github.com/coreos/go-omaha/releases). `serve-package` can also be built from source using the provided Makefile: This project includes a very simple program designed to serve a single Container Linux package on the local host. It is intended to be used as a manual updater for a machine that is not able to use a full-fledged CoreUpdate instance. Binaries are available for each released version on the [releases page](https://git.thisco.de/vbatts/go-omaha/releases). `serve-package` can also be built from source using the provided Makefile:
```bash ```bash
make make

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
func main() { func main() {

View File

@ -21,9 +21,9 @@ import (
"net/url" "net/url"
"time" "time"
"github.com/satori/go.uuid" uuid "github.com/satori/go.uuid"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
const ( const (

View File

@ -18,7 +18,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
// implements omaha.Updater // implements omaha.Updater

View File

@ -22,7 +22,7 @@ import (
"net/http" "net/http"
"time" "time"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
var ( var (

View File

@ -17,10 +17,11 @@ package client
import ( import (
"fmt" "fmt"
"os" "os"
//"os/signal" //"os/signal"
"syscall" "syscall"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
func Example() { func Example() {

View File

@ -22,7 +22,7 @@ import (
"net/http" "net/http"
"time" "time"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
const ( const (

View File

@ -21,7 +21,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
const ( const (

View File

@ -18,7 +18,7 @@ package client
import ( import (
"fmt" "fmt"
"github.com/coreos/go-omaha/omaha" "git.thisco.de/vbatts/go-omaha/omaha"
) )
var ( var (