Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Krzysztof Kotlenga edited this page May 31, 2023 · 3 revisions

Notes

Building with Go 1.19

stb-tester/aptly @ lockfile

export GOPATH=$HOME/go
mkdir -p $GOPATH/src/github.com/aptly-dev/aptly
git clone -b lockfile https://github.com/stb-tester/aptly $GOPATH/src/github.com/aptly-dev/aptly
cd $GOPATH/src/github.com/aptly-dev/aptly
go mod init
go mod tidy
go mod vendor
make install

This project

export GOPATH=$HOME/go
mkdir -p $GOPATH/src/github.com/aptly-dev/aptly
git clone https://github.com/pocek/aptly $GOPATH/src/github.com/aptly-dev/aptly
cd $GOPATH/src/github.com/aptly-dev/aptly
go mod vendor
make install
Clone this wiki locally