Skip to content

Commit

Permalink
htslib pull fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvinite committed Jan 14, 2025
1 parent 6eeb7df commit 75ca414
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions container/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ $(remote_containers):
$(call log_message,"Downloading remote container $@ ...")
$(eval tool := $(basename $@))
$(eval container_url := ${URL_${tool}})
output_file=$$(echo ${container_url} | sed -e 's#https://##' -e 's#/#-#g' -e 's#:#-#g').img \
&& wget -O $${output_file} ${container_url} --no-check-certificate \
$(eval sanitized_url := $(shell echo ${container_url} | sed -e 's/%3A/:/g'))
output_file=$$(echo ${sanitized_url} | sed -e 's#https://##' -e 's#/#-#g' -e 's#:#-#g').img \
&& wget -O $${output_file} ${sanitized_url} --no-check-certificate \
&& ln -sf $${output_file} $@


Expand Down

0 comments on commit 75ca414

Please sign in to comment.