diff options
author | fxqnlr <[email protected]> | 2024-10-08 16:56:57 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2024-10-08 16:56:57 +0200 |
commit | 979213d5524f9b39991f34b16babe925abe86666 (patch) | |
tree | fd2ddb0c42346d23a6797e332191e60de0bac431 /src | |
parent | 7740bf12633a3c7c2e461aa8b74c852efbb9318b (diff) | |
download | webol-979213d5524f9b39991f34b16babe925abe86666.tar webol-979213d5524f9b39991f34b16babe925abe86666.tar.gz webol-979213d5524f9b39991f34b16babe925abe86666.zip |
add systemd servicesystemd
Diffstat (limited to 'src')
-rw-r--r-- | src/storage.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/storage.rs b/src/storage.rs index e069875..05a4a5d 100644 --- a/src/storage.rs +++ b/src/storage.rs | |||
@@ -30,7 +30,8 @@ impl Device { | |||
30 | trace!("check for storage STORAGE_PATH=\"{}\"", Self::STORAGE_PATH); | 30 | trace!("check for storage STORAGE_PATH=\"{}\"", Self::STORAGE_PATH); |
31 | let sp = Path::new(Self::STORAGE_PATH); | 31 | let sp = Path::new(Self::STORAGE_PATH); |
32 | if !sp.exists() { | 32 | if !sp.exists() { |
33 | warn!("device storage path doesn't exist, creating it"); | 33 | let current_dir = std::env::current_dir()?; |
34 | warn!(?current_dir, "device storage path doesn't exist, creating it"); | ||
34 | create_dir_all(Self::STORAGE_PATH)?; | 35 | create_dir_all(Self::STORAGE_PATH)?; |
35 | }; | 36 | }; |
36 | 37 | ||