summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-24 22:00:35 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-24 22:00:35 +0200
commite5dc4ac22715225740544a799c06f0172d0e96d0 (patch)
tree626f39437f062e2b8798ae317c942dba4880c672
parent509dfe348a6d71a0d262fcc0e5a09426bfeeb7ce (diff)
downloadrebel-e5dc4ac22715225740544a799c06f0172d0e96d0.tar
rebel-e5dc4ac22715225740544a799c06f0172d0e96d0.zip
container: remove unneeded "pub" visibility from BUILD_UID/BUILD_GID
-rw-r--r--src/runner/container/task.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runner/container/task.rs b/src/runner/container/task.rs
index 89a30e9..2b79f54 100644
--- a/src/runner/container/task.rs
+++ b/src/runner/container/task.rs
@@ -25,8 +25,8 @@ use crate::{
use super::{jobserver::Jobserver, ns, tar};
-pub const BUILD_UID: Uid = Uid::from_raw(1000);
-pub const BUILD_GID: Gid = Gid::from_raw(1000);
+const BUILD_UID: Uid = Uid::from_raw(1000);
+const BUILD_GID: Gid = Gid::from_raw(1000);
type InputHasher = blake3::Hasher;
type DependencyHasher = blake3::Hasher;