Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-unixfs
Commits
dcd0bac8
Commit
dcd0bac8
authored
10 years ago
by
verokarhu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable mount command on windows for now
parent
639d196a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
0 deletions
+25
-0
cmd/ipfs/mount.go
cmd/ipfs/mount.go
+2
-0
cmd/ipfs/mount_windows.go
cmd/ipfs/mount_windows.go
+21
-0
fuse/readonly/readonly.go
fuse/readonly/readonly.go
+2
-0
No files found.
cmd/ipfs/mount.go
View file @
dcd0bac8
// +build !windows
package
main
import
(
...
...
This diff is collapsed.
Click to expand it.
cmd/ipfs/mount_windows.go
0 → 100644
View file @
dcd0bac8
package
main
import
(
"fmt"
"github.com/gonuts/flag"
"github.com/jbenet/commander"
)
var
cmdIpfsMount
=
&
commander
.
Command
{
UsageLine
:
"mount"
,
Short
:
"Mount an ipfs read-only mountpoint."
,
Long
:
`Not yet implemented on windows.`
,
Run
:
mountCmd
,
Flag
:
*
flag
.
NewFlagSet
(
"ipfs-mount"
,
flag
.
ExitOnError
),
}
func
mountCmd
(
c
*
commander
.
Command
,
inp
[]
string
)
error
{
fmt
.
Printf
(
"not implemented yet
\n
"
)
return
nil
}
This diff is collapsed.
Click to expand it.
fuse/readonly/readonly.go
View file @
dcd0bac8
// A Go mirror of libfuse's hello.c
// +build !windows
package
readonly
import
(
...
...
This diff is collapsed.
Click to expand it.
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