From 2b878f5e28c3cfeb5dcad412526f46abcbb96bc6 Mon Sep 17 00:00:00 2001
From: comp500 <comp500@users.noreply.github.com>
Date: Tue, 30 May 2023 17:49:15 +0100
Subject: [PATCH] Clean up misleading help message for cf import

---
 curseforge/import.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/curseforge/import.go b/curseforge/import.go
index 61c7e53..f4f8a41 100644
--- a/curseforge/import.go
+++ b/curseforge/import.go
@@ -20,8 +20,8 @@ import (
 
 // importCmd represents the import command
 var importCmd = &cobra.Command{
-	Use:   "import [modpack]",
-	Short: "Import a curseforge modpack, from a download URL or a downloaded pack zip, or an installed metadata json file",
+	Use:   "import [modpack path]",
+	Short: "Import a curseforge modpack from a downloaded pack zip or an installed metadata json file",
 	Args:  cobra.ExactArgs(1),
 	Run: func(cmd *cobra.Command, args []string) {
 		inputFile := args[0]