From eadde877e8376bb3106864aa6ac5e9b4a293a9d1 Mon Sep 17 00:00:00 2001 From: RawCooked Date: Mon, 11 May 2026 23:01:16 +0100 Subject: [PATCH] Remove UTF-8 BOM from all PowerShell scripts The BOM bytes (EF BB BF) caused `iwr ... | iex` to fail with "???<# is not recognized" because PowerShell does not strip the BOM when executing piped string content via Invoke-Expression. Co-Authored-By: Claude Sonnet 4.6 --- core.ps1 | 2 +- install.ps1 | 2 +- utils.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core.ps1 b/core.ps1 index 58e3b5c..edbdc28 100644 --- a/core.ps1 +++ b/core.ps1 @@ -1,4 +1,4 @@ -<# +<# .SYNOPSIS Kitly — A modern, lightweight package bundle installer for Windows using Winget. .DESCRIPTION diff --git a/install.ps1 b/install.ps1 index 861bdb5..0eaec4f 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,4 +1,4 @@ -<# +<# .SYNOPSIS Kitly Installer — One-command setup for Kitly CLI. .DESCRIPTION diff --git a/utils.ps1 b/utils.ps1 index 3cc6aad..2a2a5c8 100644 --- a/utils.ps1 +++ b/utils.ps1 @@ -1,4 +1,4 @@ -# ═══════════════════════════════════════════════════════════════════════ +# ═══════════════════════════════════════════════════════════════════════ # Kitly — Utilities & UI Functions # Beautiful CLI output, config management, and shared helpers # ═══════════════════════════════════════════════════════════════════════