diff --git a/engine/engine.go b/engine/engine.go index 846a1a7..dc6db8d 100644 --- a/engine/engine.go +++ b/engine/engine.go @@ -37,7 +37,7 @@ func RebuildProject(riderEnabled bool, doBuild bool) { checkPath(projectABSPath) // Verifying path, will exit if fail fmt.Println("Using Project Absolute Path: ", projectABSPath) // Setting the folders to remove //remove.go - folderRemove := []string{".vs", "Binaries", "Intermediate", "Saved"} + folderRemove := []string{".vs", "Binaries", "Intermediate", "Saved", ".idea"} fmt.Println("Removing Folders...") err = removeFolders(folderRemove) if err != nil { diff --git a/main.exe b/main.exe index f9f4f8e..7790c96 100644 Binary files a/main.exe and b/main.exe differ diff --git a/main.go b/main.go index 042ad59..29a6a98 100644 --- a/main.go +++ b/main.go @@ -45,11 +45,6 @@ func executor(in string) { case "help": fmt.Println("Use 'clean' or 'rebuild' with the optional flag '--rider' if you need the rider plugin enabled.") fmt.Println("Example Usage: 'clean --rider' or 'rebuild --rider'.") - case "post", "put", "patch": - if len(blocks) < 2 { - fmt.Println("please set request body.") - return - } default: fmt.Println("Sorry, I don't understand") }