~alpine/devel

abuild: trivial update to new saveas-*:// support v1 PROPOSED

Matt Smith: 1
 abuild: trivial update to new saveas-*:// support

 1 files changed, 5 insertions(+), 5 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/devel/patches/216/mbox | git am -3
Learn more about email & git

[alpine-devel] [PATCH] abuild: trivial update to new saveas-*:// support Export this patch

Removed the asterisk from the beginning of the https check, and moved the
saveas- check above.
---
 abuild.in |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/abuild.in b/abuild.in
index ec40612..bbfbf98 100755
--- a/abuild.in
+++ b/abuild.in
@@ -177,17 +177,17 @@ uri_fetch() {
	[ -n "$quiet" ] && opts="-q"
	[ -f "$SRCDEST/$d" ] && return 0

	# we need GNU wget for this
	case "$uri" in
		*https://*) opts="--no-check-certificate";;
	esac

	# fix saveas-*://* URIs
	case "$uri" in
		# remove 'saveas-' from beginning and
		# '/filename' from end of URI
		saveas-*://*) uri="${uri:7:$(expr ${#uri} - 7 - ${#d} - 1)}";;
	esac

	# we need GNU wget for this
	case "$uri" in
		https://*) opts="--no-check-certificate";;
	esac
	
	mkdir -p "$SRCDEST"
	if [ -f "$SRCDEST/$d.part" ]; then
-- 
1.7.3.3



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---