runme icon indicating copy to clipboard operation
runme copied to clipboard

Provide a "mise" installer

Open maelp opened this issue 11 months ago • 2 comments

Mise (https://mise.jdx.dev/) is great to setup dev env, it would be nice to have a way to install runme with it!

maelp avatar Mar 20 '25 11:03 maelp

For now if I do mise use go and mise use "go:github.com/runmedev/runme@latest" I get this error

$ mise use "go:github.com/runmedev/runme@latest"
go: github.com/runmedev/[email protected]: version constraints conflict:
	github.com/runmedev/[email protected]: parsing go.mod:
	module declares its path as: github.com/stateful/runme
	        but was required as: github.com/runmedev/runme
mise ERROR go failed
go: github.com/runmedev/[email protected]: version constraints conflict:
	github.com/runmedev/[email protected]: parsing go.mod:
	module declares its path as: github.com/stateful/runme
	        but was required as: github.com/runmedev/runme
mise WARN  Failed to install, trying again without added 'v' prefix
go: github.com/runmedev/[email protected]: github.com/runmedev/[email protected]: invalid version: unknown revision 1.8.2
mise ERROR go failed
go: github.com/runmedev/[email protected]: github.com/runmedev/[email protected]: invalid version: unknown revision 1.8.2
mise ERROR failed to install go:github.com/runmedev/[email protected]
mise ERROR go exited with non-zero status: exit code 1
mise ERROR Run with --verbose or MISE_VERBOSE=1 for more information

maelp avatar Mar 20 '25 11:03 maelp

@maelp try:

mise use ubi:runmedev/runme

# for a global install
mise use --global ubi:runmedev/runme

Heartnett avatar Nov 09 '25 10:11 Heartnett