Compare commits

...

3 Commits

Author SHA1 Message Date
Jef Roosens 0003fd234b
Less childish wording [CI SKIP] 2022-02-13 15:24:52 +01:00
Jef Roosens 8455f4c977
Merge branch 'dev' into multi-arch-repos 2022-02-13 15:00:45 +01:00
Jef Roosens c8a10261c4
Bump v version to 2022.06 2022-02-13 13:31:07 +01:00
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
SRC_DIR := src
SOURCES != find '$(SRC_DIR)' -iname '*.v'
V_RELEASE := weekly.2022.05
V_RELEASE := weekly.2022.06
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

View File

@ -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('wow')
println('step one')
rp := lock r.repos {
println('wollah')
println('step two')
if repo_name !in r.repos {
println('yicht')
println('step three')
r.repos[repo_name] = new_arch(os.join_path_single(r.repo_dir, repo_name),
r.pkg_dir) ?
}