From: Bartosz Świątek Date: Tue, 10 Jul 2012 14:08:24 +0000 (+0200) Subject: - fix sending with new autotags style X-Git-Url: https://git.tld-linux.org/?p=tld-builder.git;a=commitdiff_plain;h=9139295ae516bbed0bfbf2f8d2e17cf9517de8dc - fix sending with new autotags style --- diff --git a/client/make-request.sh b/client/make-request.sh index 493432c..d73c08a 100755 --- a/client/make-request.sh +++ b/client/make-request.sh @@ -588,13 +588,13 @@ specs=`for s in $specs; do echo $s ;; *.spec:*) # spec with branch - basename $s + echo $s ;; *.spec) # spec without branch echo $(basename $s):$branch ;; *:*) # package name with branch - basename $s | sed -e 's/:/.spec:/' + echo $s | sed -e 's/:/.spec:/' ;; *) # just package name echo $(basename $s).spec:$branch