We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007890e commit fd91186Copy full SHA for fd91186
Makefile
@@ -69,11 +69,12 @@ html-ui-bindata: html-ui $(go_bindata)
69
html-ui-bindata-fallback: $(go_bindata)
70
(cd internal/server && $(go_bindata) -fs -tags !embedhtml -o "$(CURDIR)/internal/server/htmlui_fallback.go" -pkg server index.html)
71
72
-kopia-ui: goreleaser
+kopia-ui:
73
$(MAKE) -C app build-electron
74
75
travis-release:
76
- $(retry) $(MAKE) goreleaser kopia-ui
+ $(retry) $(MAKE) goreleaser
77
+ $(retry) $(MAKE) kopia-ui
78
$(MAKE) lint vet test-with-coverage html-ui-tests
79
$(retry) $(MAKE) integration-tests
80
ifeq ($(TRAVIS_OS_NAME),linux)
tools/retry.sh
@@ -1,3 +1,4 @@
1
+#!/bin/sh -e
2
for attempt in 1 2 3; do
3
echo "+ $@ (attempt $attempt)"
4
if "$@"; then
0 commit comments