From 4e64a5516939b67683d3192aca0c585df1130d4e Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Mon, 8 Jun 2020 10:36:36 +1000 Subject: [PATCH] cleaner default source list --- cfg/pkg/sources.cfg | 3 --- lib/pkgman.lua | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 cfg/pkg/sources.cfg diff --git a/cfg/pkg/sources.cfg b/cfg/pkg/sources.cfg deleted file mode 100644 index 2dd35b9..0000000 --- a/cfg/pkg/sources.cfg +++ /dev/null @@ -1,3 +0,0 @@ -{main={path="https://oc.shadowkat.net/psychos/pkg", - cache=true, - name="main"}} \ No newline at end of file diff --git a/lib/pkgman.lua b/lib/pkgman.lua index 49662f7..3f565b2 100644 --- a/lib/pkgman.lua +++ b/lib/pkgman.lua @@ -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)