mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-04-20 19:38:39 +00:00
Apply retries as global, config-level option `downloadRetries` so that it can be applied to any aptly command which downloads objects. Unwrap `errors.Wrap` which is used in downloader. Unwrap `*url.Error` which should be the actual error returned from the HTTP client, catch more cases, be more specific around failures.
13 lines
298 B
Makefile
13 lines
298 B
Makefile
RUBYBINPATH=$(shell ruby -r rubygems -e 'puts Gem.user_dir')/bin
|
|
|
|
all: $(RUBYBINPATH)/ronn generate
|
|
|
|
$(RUBYBINPATH)/ronn:
|
|
gem install --user-install specific_install
|
|
gem specific_install --user-install -l smira/ronn
|
|
|
|
generate:
|
|
PATH=$(RUBYBINPATH):$(PATH) go run ../_man/gen.go
|
|
|
|
.PHONY: generate
|