From 0003fd234b8ae84fa49b7c6e0518bf843dd4c70b Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Sun, 13 Feb 2022 15:24:52 +0100 Subject: [PATCH] Less childish wording [CI SKIP] --- src/repo/multi.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/repo/multi.v b/src/repo/multi.v index c2e4094..550e913 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('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) ? }