diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2022-05-26 10:52:58 +0400 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2022-05-26 10:52:58 +0400 |
commit | 237ddbe1770485eab0723aac3a5dca92e1a0c5d9 (patch) | |
tree | 03f33cd0d24ecef2c5021ff2f2e1efd54c70dd26 | |
parent | 02f50533c4a476b91e4b39a7a2d052095d970983 (diff) | |
download | unit-237ddbe1770485eab0723aac3a5dca92e1a0c5d9.tar.gz unit-237ddbe1770485eab0723aac3a5dca92e1a0c5d9.tar.bz2 |
Packaging: Go: use GO111MODULE=auto in build instructions.
-rw-r--r-- | pkg/deb/Makefile.go | 2 | ||||
-rw-r--r-- | pkg/rpm/Makefile.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/deb/Makefile.go b/pkg/deb/Makefile.go index cdccb5ed..b9463076 100644 --- a/pkg/deb/Makefile.go +++ b/pkg/deb/Makefile.go @@ -36,7 +36,7 @@ The $(MODULE_SUMMARY_go) has been installed. To check out the sample app, run these commands: - GOPATH=/usr/share/gocode go build -o /tmp/go-app /usr/share/doc/unit-$(MODULE_SUFFIX_go)/examples/go-app/let-my-people.go + GOPATH=/usr/share/gocode GO111MODULE=auto go build -o /tmp/go-app /usr/share/doc/unit-$(MODULE_SUFFIX_go)/examples/go-app/let-my-people.go sudo service unit restart cd /usr/share/doc/unit-$(MODULE_SUFFIX_go)/examples sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/control.unit.sock http://localhost/config diff --git a/pkg/rpm/Makefile.go b/pkg/rpm/Makefile.go index e3891ab4..a1421bee 100644 --- a/pkg/rpm/Makefile.go +++ b/pkg/rpm/Makefile.go @@ -65,7 +65,7 @@ The $(MODULE_SUMMARY_go) has been installed. To check the sample app, run these commands: - GOPATH=%{gopath} go build -o /tmp/go-app /usr/share/doc/unit-go/examples/go-app/let-my-people.go + GOPATH=%{gopath} GO111MODULE=auto go build -o /tmp/go-app /usr/share/doc/unit-go/examples/go-app/let-my-people.go sudo service unit start cd /usr/share/doc/%{name}/examples sudo curl -X PUT --data-binary @unit.config --unix-socket /var/run/unit/control.sock http://localhost/config |