Compare commits
6 Commits
ef4c683ed1
...
afa0b4d856
Author | SHA1 | Date | |
---|---|---|---|
|
afa0b4d856 | ||
|
00c3f07135 | ||
|
6000a0ce74 | ||
|
17b53c59fd | ||
|
e04550fc2f | ||
|
7415af0dd2 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -6,7 +6,9 @@
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
r2go
|
||||
.vscode
|
||||
|
||||
risk
|
||||
main
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
|
@ -1,4 +1,4 @@
|
||||
# r2mod-go
|
||||
# risk
|
||||
risk of rain 2 mod updater/manager/installer/uninstaller/lister/searcher/info-getter
|
||||
|
||||
# how to use
|
||||
@ -7,6 +7,9 @@ risk of rain 2 mod updater/manager/installer/uninstaller/lister/searcher/info-ge
|
||||
- use
|
||||
- or get from releases
|
||||
|
||||
# Q: does this work as a go module?
|
||||
A: no
|
||||
|
||||
## currently implemented
|
||||
- downloading
|
||||
- info getting
|
||||
|
@ -5,7 +5,7 @@ import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"r2go/utils"
|
||||
"risk/utils"
|
||||
"time"
|
||||
|
||||
"github.com/lithammer/fuzzysearch/fuzzy"
|
||||
|
@ -2,8 +2,8 @@ package cli
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"r2go/tools"
|
||||
"r2go/utils"
|
||||
"risk/tools"
|
||||
"risk/utils"
|
||||
|
||||
"github.com/fatih/color"
|
||||
)
|
||||
@ -29,7 +29,7 @@ func InstallMod(pkg string) {
|
||||
buffer += blue("downloaded")
|
||||
}
|
||||
|
||||
fmt.Println(deps)
|
||||
// fmt.Println(deps)
|
||||
dependencies := []string{}
|
||||
for _, d := range deps {
|
||||
dependency := tools.ExposeModString(d)
|
||||
|
16
main.go
16
main.go
@ -5,10 +5,10 @@ import (
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
"r2go/api"
|
||||
"r2go/cli"
|
||||
"r2go/tools"
|
||||
"r2go/utils"
|
||||
"risk/api"
|
||||
"risk/cli"
|
||||
"risk/tools"
|
||||
"risk/utils"
|
||||
"strings"
|
||||
|
||||
"github.com/fatih/color"
|
||||
@ -16,7 +16,7 @@ import (
|
||||
|
||||
var version string = "0.0.1"
|
||||
|
||||
// Init starts the CLI frontend for r2go
|
||||
// Init starts the CLI frontend for risk
|
||||
func main() {
|
||||
logFile, err := os.OpenFile(utils.SystemInfo.ProgDir+"/r2mod-go.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
|
||||
utils.CheckErr(err)
|
||||
@ -54,7 +54,7 @@ func main() {
|
||||
case "info":
|
||||
api.InitAPI()
|
||||
if len(os.Args) <= 2 {
|
||||
fmt.Println("Usage: r2go info <dependency string>")
|
||||
fmt.Println("Usage: risk info <dependency string>")
|
||||
} else {
|
||||
status, selectedmod := api.GetModData(os.Args[2])
|
||||
if status != 0 {
|
||||
@ -131,7 +131,7 @@ func main() {
|
||||
case "filter":
|
||||
fmt.Println(tools.ExposeModString(os.Args[2]))
|
||||
case "version", "ver", "v":
|
||||
color.Magenta("> r2go", version)
|
||||
color.Magenta("> risk", version)
|
||||
fmt.Println(" > github.com/endigma442")
|
||||
case "search", "s", "find":
|
||||
api.InitAPI()
|
||||
@ -147,6 +147,6 @@ func main() {
|
||||
}
|
||||
color.Green("> Complete!")
|
||||
default:
|
||||
fmt.Println("Unknown command, use 'r2go help' for a list of commands.")
|
||||
fmt.Println("Unknown command, use 'risk help' for a list of commands.")
|
||||
}
|
||||
}
|
||||
|
@ -4,9 +4,9 @@ import (
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
"r2go/api"
|
||||
"r2go/utils"
|
||||
"regexp"
|
||||
"risk/api"
|
||||
"risk/utils"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user