Skip to content

Commit

Permalink
README.md: Fix info about building
Browse files Browse the repository at this point in the history
"go get" is deprecated. Use "go install" instead.

Signed-off-by: Vinicius Aquino <vinicius.aquino@ossystems.com.br>
  • Loading branch information
Ossanes authored and otavio committed Mar 11, 2022
1 parent 0ac798a commit d4b0fa4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,24 +84,23 @@ bundling static assets inside of Go binaries use by
To install Packr utility and the dependencies:

```
$ go get -u github.com/gobuffalo/packr/packr
$ go get -u github.com/gobuffalo/packr
$ go install github.com/gobuffalo/packr/v2/packr2@latest
```


Finally, you can build `updatehub-ce` as:

```
$ cd <YOUR-UPDATEHUB-CE-PATH>/ui/ && yarn install && yarn run build && cd ..
$ packr install
$ ~/go/bin/packr2 install
$ go build
$ go install
```

Now you can run the `updatehub-ce` as:

```
./updatehub-ce --http 8080
~/go/bin/updatehub-ce --http 8080
```

## Yocto Project
Expand Down

0 comments on commit d4b0fa4

Please sign in to comment.