Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
df2ff6a1
Commit
df2ff6a1
authored
May 04, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make path absolute for AutoUnionFs argument.
parent
b8b6c4e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
unionfs/autounion.go
unionfs/autounion.go
+8
-1
No files found.
unionfs/autounion.go
View file @
df2ff6a1
...
...
@@ -49,6 +49,10 @@ func NewAutoUnionFs(directory string, options AutoUnionFsOptions) *AutoUnionFs {
a
:=
new
(
AutoUnionFs
)
a
.
knownFileSystems
=
make
(
map
[
string
]
*
UnionFs
)
a
.
options
=
&
options
directory
,
err
:=
filepath
.
Abs
(
directory
)
if
err
!=
nil
{
panic
(
"filepath.Abs returned err"
)
}
a
.
root
=
directory
return
a
}
...
...
@@ -64,7 +68,10 @@ func (me *AutoUnionFs) Mount(connector *fuse.FileSystemConnector) fuse.Status {
func
(
me
*
AutoUnionFs
)
addAutomaticFs
(
roots
[]
string
)
{
relative
:=
strings
.
TrimLeft
(
strings
.
Replace
(
roots
[
0
],
me
.
root
,
""
,
-
1
),
"/"
)
name
:=
strings
.
Replace
(
relative
,
"/"
,
"-"
,
-
1
)
me
.
addFs
(
name
,
roots
)
if
me
.
getUnionFs
(
name
)
==
nil
{
me
.
addFs
(
name
,
roots
)
}
}
func
(
me
*
AutoUnionFs
)
createFs
(
name
string
,
roots
[]
string
)
(
*
UnionFs
,
fuse
.
Status
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment