-
Notifications
You must be signed in to change notification settings - Fork 146
/
unix.mounts.dsc
85 lines (84 loc) · 2.15 KB
/
unix.mounts.dsc
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
export const mounts = Context.getCurrentHost().os !== "win" ? [
{
name: a`xcode`,
path: p`/Applications`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`etc`,
path: p`/etc`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`usrbin`,
path: p`/usr/bin`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`usrlib`,
path: p`/usr/lib`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`usrlib64`,
path: p`/usr/lib64`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`usrinclude`,
path: p`/usr/include`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`library`,
path: p`/Library`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`user`,
path: p`/Users/${Environment.getStringValue("USER")}`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`privateetc`,
path: p`/private/etc`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
isScrubbable: false,
},
{
name: a`tmp`,
path: p`/tmp`,
trackSourceFileChanges: false,
isWritable: false,
isReadable: true,
isScrubbable: false,
}
] : [];