From af86d91d3f6118427a48d02b3e043b774e6b9050 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Tue, 11 Jan 2022 16:37:49 +0100 Subject: [PATCH] Doesn't fix anything --- vieter/repo.v | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vieter/repo.v b/vieter/repo.v index 0777bf3..8d1acbd 100644 --- a/vieter/repo.v +++ b/vieter/repo.v @@ -7,6 +7,7 @@ const pkgs_subpath = 'pkgs' // Handles management of a repository. Package files are stored in '$dir/pkgs' // & moved there if necessary. pub struct Repo { +mut: mutex shared int = 0 pub: dir string [required] @@ -14,20 +15,20 @@ pub: } // Returns path to the given package, prepended with the repo's path. -pub fn (r Repo) pkg_path(pkg string) string { +pub fn (r &Repo) pkg_path(pkg string) string { return os.join_path(r.dir, pkgs_subpath, pkg) } -pub fn (r Repo) exists(pkg string) bool { +pub fn (r &Repo) exists(pkg string) bool { return os.exists(r.pkg_path(pkg)) } // Returns the full path to the database file -pub fn (r Repo) db_path() string { +pub fn (r &Repo) db_path() string { return os.join_path_single(r.dir, '${r.name}.tar.gz') } -pub fn (r Repo) add_package(pkg_path string) ? { +pub fn (r &Repo) add_package(pkg_path string) ? { mut res := os.Result{} lock r.mutex {