mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
Comment that catch ignores error.
Partial #592 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
parent
3a6d6724c9
commit
65218eff74
1 changed files with 3 additions and 1 deletions
|
@ -23,7 +23,9 @@ class NetworkManager {
|
|||
do {
|
||||
let url = URL(fileURLWithPath: NSHomeDirectory()).appendingPathComponent("Library/Caches/com.mphys.mas-cli")
|
||||
try FileManager.default.removeItem(at: url)
|
||||
} catch {}
|
||||
} catch {
|
||||
// Ignore
|
||||
}
|
||||
}
|
||||
|
||||
/// Loads data asynchronously.
|
||||
|
|
Loading…
Reference in a new issue