From 475ea4bad11563f1c77f560bb7aa8aebade858cd Mon Sep 17 00:00:00 2001 From: adamef93 Date: Tue, 26 Jul 2022 14:09:16 -0400 Subject: [PATCH] Added missing -Prompt flag on line 82 --- ImportITGExportHuduKbs.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ImportITGExportHuduKbs.ps1 b/ImportITGExportHuduKbs.ps1 index 16a1d0c..84cbb08 100644 --- a/ImportITGExportHuduKbs.ps1 +++ b/ImportITGExportHuduKbs.ps1 @@ -79,7 +79,7 @@ function Start-ITGlueKbImport { $MainCSVExportPath = (Read-Host -Prompt "Enter the path to your CSV").replace('"','') $RootFolderExportPath = (Read-Host -Prompt "Enter the path to your documents exported from IT Glue").replace('"','') -$HuduBaseUrl = Read-Host "Enter your Hudu URL without the trailing space (/)" +$HuduBaseUrl = Read-Host -Prompt "Enter your Hudu URL without the trailing space (/)" $HuduAPIKey = Read-Host -Prompt "Enter your Hudu API key" #### End of functions, modules, and starting variables ####