summaryrefslogtreecommitdiffstats
path: root/crates/runner/src/paths.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/runner/src/paths.rs')
-rw-r--r--crates/runner/src/paths.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/runner/src/paths.rs b/crates/runner/src/paths.rs
index b46d1bb..7af1e3a 100644
--- a/crates/runner/src/paths.rs
+++ b/crates/runner/src/paths.rs
@@ -5,7 +5,6 @@
//! ```text
//! build/
//! ├── build.lock
-//! ├── rootfs.tar
//! ├── downloads/
//! │   └── ...
//! ├── state/
@@ -27,7 +26,6 @@
//! │   └── ...
//! └── tmp/ # temporary files (cleaned on start)
//!    ├── dev/ # container /dev
-//!    ├── rootfs/ # unpacked rootfs.tar
//!    ├── depends/ # unpacked dependencies
//!    └── task/
//!    └── <input hash>/
@@ -40,14 +38,11 @@
use common::string_hash::*;
-pub const ROOTFS_ARCHIVE: &str = "build/rootfs.tar";
-
pub const DOWNLOADS_DIR: &str = "build/downloads";
pub const PIN_DIR: &str = "build/pinned";
pub const TMP_DIR: &str = "build/tmp";
pub const DEV_DIR: &str = "build/tmp/dev";
-pub const ROOTFS_DIR: &str = "build/tmp/rootfs";
pub const DEPENDS_TMP_DIR: &str = "build/tmp/depends";
pub const TASK_TMP_DIR: &str = "build/tmp/task";