Fix spurious chars passed to grep in extract_distfiles().
--HG-- extra : convert_revision : 6f1f9ca0640b8cbb0dcb8ef7f42046566d479fc0
This commit is contained in:
parent
2cb592e66e
commit
5803db23a3
4
xbps.sh
4
xbps.sh
@ -379,9 +379,9 @@ extract_distfiles()
|
||||
cursufx=".tar.gz"
|
||||
elif $(echo $f|grep -q '.tgz'); then
|
||||
cursufx=".tgz"
|
||||
elif $(echo $f|grep -q '.tar)'); then
|
||||
elif $(echo $f|grep -q '.tar'); then
|
||||
cursufx=".tar"
|
||||
elif $(echo $f|grep -q '.zip)'); then
|
||||
elif $(echo $f|grep -q '.zip'); then
|
||||
cursufx=".zip"
|
||||
else
|
||||
msg_error "unknown distfile suffix"
|
||||
|
Loading…
x
Reference in New Issue
Block a user