Skip to content

Commit

Permalink
Fix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Vendicated committed Jan 19, 2023
1 parent 8c719a0 commit 58786c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .idea/VencordInstaller.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package main

import (
"errors"
"flag"
"fmt"
)
Expand All @@ -16,7 +17,7 @@ func main() {
var installFlag = flag.Bool("install", false, "Install Vencord on a Discord install")
var uninstallFlag = flag.Bool("uninstall", false, "Uninstall Vencord from a Discord install")
var installOpenAsar = flag.Bool("install-openasar", false, "Install OpenAsar on a Discord install")
var uninstallOpenAsar = flag.Bool("install-openasar", false, "Uninstall OpenAsar from a Discord install")
var uninstallOpenAsar = flag.Bool("uninstall-openasar", false, "Uninstall OpenAsar from a Discord install")
var updateFlag = flag.Bool("update", false, "Update your local Vencord files")
flag.Parse()

Expand Down

0 comments on commit 58786c8

Please sign in to comment.