aports.lua: support filename::fileuri source format

This commit is contained in:
Natanael Copa 2013-02-21 15:31:25 +00:00
parent 5fca471ab2
commit 1df2a25695
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ end
function is_remote(url)
local _,pref
for _,pref in pairs{ "^http://", "^ftp://", "^https://" } do
for _,pref in pairs{ "^http://", "^ftp://", "^https://", ".*::.*" } do
if string.match(url, pref) then
return true
end