Skip to content
Snippets Groups Projects
Select Git revision
  • d92a4f0d19747b43fd4dfe598c0bb9c854033c5e
  • master default protected
  • dwmcallister-patch-1
  • 520-fix-wsl
  • tune-worker-processes
  • alpine-nginxorg
  • 1.29.1
  • 1.29.0
  • 1.28.0
  • 1.27.5
  • 1.27.3
  • 1.27.2
  • 1.27.0
  • 1.26.1
  • 1.26.0
  • 1.25.5
  • 1.25.4
  • 1.25.3
  • 1.25.2
  • 1.25.1
  • 1.25.0
  • 1.24.0
  • 1.23.3
  • 1.23.4
  • 1.23.2
  • 1.22.1
26 results

Dockerfile-debian-perl.template

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)
    	},
    }