Compare commits

..

2 Commits

Author SHA1 Message Date
4e64a55169 cleaner default source list 2020-06-08 10:36:36 +10:00
322cb837bb add main repo as default 2020-06-08 10:33:57 +10:00

View File

@ -11,7 +11,7 @@ require "pkgfs"
local function getSources()
local f = io.open(pkg.sourcePath,"rb")
if not f then return {} end
if not f then return {main={path="https://oc.shadowkat.net/psychos/pkg",cache=true,name="main"}} end
local c = f:read("*a")
f:close()
return serial.unserialize(c)