diff options
Diffstat (limited to 'doMakeDists.go')
| -rw-r--r-- | doMakeDists.go | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/doMakeDists.go b/doMakeDists.go index 7cdea78..7967174 100644 --- a/doMakeDists.go +++ b/doMakeDists.go @@ -7,12 +7,16 @@ import ( // os.Chdir(me.mirrorsDir) // makes the dists/ for 'apt update' func doMakeDists() (string, error) { + var s string + var err error os.Chdir(me.pb.BaseDir) - for p := range me.pb.IterAll() { - p.Print() - return "printed one out", nil - } - s, err := me.pb.MakeDists() + /* + for p := range me.pb.IterAll() { + p.Print() + return "printed one out", nil + } + s, err := me.pb.MakeDists() + */ return s, err } |
