diff --git a/Makefile b/Makefile index ca3bdf9..8d3b7a4 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SRC_DIR := src SOURCES != find '$(SRC_DIR)' -iname '*.v' -V_RELEASE := weekly.2022.06 +V_RELEASE := weekly.2022.05 V_PATH ?= v-$(V_RELEASE)/v V := $(V_PATH) -showcc -gc boehm ENV := API_KEY=test DOWNLOAD_DIR=data/downloads REPO_DIR=data/repos PKG_DIR=data/pkgs LOG_LEVEL=DEBUG diff --git a/src/repo/multi.v b/src/repo/multi.v index 550e913..c2e4094 100644 --- a/src/repo/multi.v +++ b/src/repo/multi.v @@ -46,11 +46,11 @@ pub fn new_multi(repo_dir string, pkg_dir string) ?MultiArchRepo { pub fn (r &MultiArchRepo) add_from_path(repo_name string, pkg_path string) ?(bool, &package.Pkg) { // First, we create the repo if it isn't present yet - println('step one') + println('wow') rp := lock r.repos { - println('step two') + println('wollah') if repo_name !in r.repos { - println('step three') + println('yicht') r.repos[repo_name] = new_arch(os.join_path_single(r.repo_dir, repo_name), r.pkg_dir) ? }