Skip to content

Commit e558f83

Browse files
use updated reference of xgo in makefile (#6339)
1 parent 4f74bad commit e558f83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ release-dirs:
307307
.PHONY: release-windows
308308
release-windows:
309309
@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
310-
$(GO) get -u github.com/karalabe/xgo; \
310+
$(GO) get -u src.techknowlogick.com/xgo; \
311311
fi
312312
xgo -dest $(DIST)/binaries -tags 'netgo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$(VERSION) .
313313
ifeq ($(CI),drone)
@@ -317,7 +317,7 @@ endif
317317
.PHONY: release-linux
318318
release-linux:
319319
@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
320-
$(GO) get -u github.com/karalabe/xgo; \
320+
$(GO) get -u src.techknowlogick.com/xgo; \
321321
fi
322322
xgo -dest $(DIST)/binaries -tags 'netgo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/*' -out gitea-$(VERSION) .
323323
ifeq ($(CI),drone)
@@ -327,7 +327,7 @@ endif
327327
.PHONY: release-darwin
328328
release-darwin:
329329
@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
330-
$(GO) get -u github.com/karalabe/xgo; \
330+
$(GO) get -u src.techknowlogick.com/xgo; \
331331
fi
332332
xgo -dest $(DIST)/binaries -tags 'netgo $(TAGS)' -ldflags '$(LDFLAGS)' -targets 'darwin/*' -out gitea-$(VERSION) .
333333
ifeq ($(CI),drone)

0 commit comments

Comments
 (0)