Browse Source

Attempting to fix wget call bug

environments/development/deployments/36
Drew Short 6 years ago
parent
commit
0402c1b7db
  1. 3
      src/spm/spm.moon

3
src/spm/spm.moon

@ -83,8 +83,11 @@ compare = (a, b) ->
downloadFile = (url, path, force) ->
if options.f or force
wget("-fq", url, path)
return true
else
wget("-q", url, path)
return true
return false
readFromFile = (path) ->
if not fs.exists(fs.path(path))

Loading…
Cancel
Save