From 99a0ec7ff5ffc96f7d80cef1b4fb95a7064434d8 Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Thu, 23 Sep 2021 15:59:27 -0600 Subject: [PATCH] fix build issue --- appmgr/src/context/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appmgr/src/context/cli.rs b/appmgr/src/context/cli.rs index 59468b049..a19542a0a 100644 --- a/appmgr/src/context/cli.rs +++ b/appmgr/src/context/cli.rs @@ -45,7 +45,7 @@ impl Drop for CliContextSeed { File::create(&tmp).unwrap(), fd_lock_rs::LockType::Exclusive, true, - ); + )?; let store = self.cookie_store.lock().unwrap(); store.save_json(&mut writer).unwrap(); writer.sync_all().unwrap();