1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! Cross-process advisory lock on a project. Prevents two concurrent
//! `mc-snap install` / `update` / `start` invocations from stomping each
//! other's yml, lockfile, or `.mc-snap/server/`.
//!
//! Note: not to be confused with [`crate::lock`], which is the *lockfile schema*
//! (mc-snap.lock).
use ;
use FileExt;
use ;
use Path;
/// RAII guard. Drop releases the lock and removes the file on a best-effort basis.