Fixed docker CI
All checks were successful
Publish Server Image / build-and-push-image (push) Successful in 2m12s

This commit is contained in:
Ultradesu
2026-03-17 19:03:48 +00:00
parent bfc0675f5a
commit 85b3cb6852
6 changed files with 27 additions and 16 deletions

View File

@@ -75,7 +75,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
MountOption::NoExec, // Better security for media mount
];
println!("Mounting Furumi-ng v{} to {:?}", env!("CARGO_PKG_VERSION"), args.mount);
println!("Mounting Furumi-ng v{} to {:?}", option_env!("FURUMI_VERSION").unwrap_or(env!("CARGO_PKG_VERSION")), args.mount);
// Use Session + BackgroundSession for graceful unmount on exit
let session = Session::new(fuse_fs, &args.mount, &options)?;