Skip to content
Snippets Groups Projects
Select Git revision
  • 82fbb84384d04be3433deb993af37f927432198c
  • master default protected
  • fix/car-blocked-cids
  • fix-ctrl-c-prompt-with-migrations
  • feat/identity-cid-size-limits
  • telemetry/improve-vm-detection
  • release
  • release-v0.37.0
  • staging
  • reprovide-sweep
  • copilot/fix-859994d3-9d4e-4a8e-bea3-58b58c75a399
  • feat/boxo-retrieval-diagnostics
  • dependabot/github_actions/codecov/codecov-action-5.5.0
  • config-api-for-path
  • fix/panic-and-zombie-daemons
  • chore-golangci-v2
  • config-reprovider-test
  • release-v036
  • release-v0.36.0
  • telemetry-plugin
  • fix-editor-env-handling
  • v0.37.0
  • v0.37.0-rc1
  • v0.36.0
  • v0.36.0-rc2
  • v0.36.0-rc1
  • v0.35.0
  • v0.35.0-rc2
  • v0.35.0-rc1
  • v0.34.1
  • v0.34.0
  • v0.34.0-rc2
  • v0.34.0-rc1
  • v0.33.2
  • v0.33.1
  • v0.33.0
  • v0.33.0-rc3
  • v0.33.0-rc2
  • v0.33.0-rc1
  • v0.32.1
  • v0.32.0
41 results

core.go

Blame
  • mount_windows.go 483 B
    package commands
    
    import (
    	"errors"
    
    	cmds "github.com/ipfs/go-ipfs/commands"
    
    	cmdkit "gx/ipfs/QmUyfy4QSr3NXym4etEiRyxBLqqAeKHJuRdi8AACxg63fZ/go-ipfs-cmdkit"
    )
    
    var MountCmd = &cmds.Command{
    	Helptext: cmdkit.HelpText{
    		Tagline:          "Not yet implemented on Windows.",
    		ShortDescription: "Not yet implemented on Windows. :(",
    	},
    
    	Run: func(req cmds.Request, res cmds.Response) {
    		res.SetError(errors.New("Mount isn't compatible with Windows yet"), cmdkit.ErrNormal)
    	},
    }