From 66cc3cc635eef82c2ec039c61c26cda45675a0bb Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 24 Jun 2021 11:53:58 +0200 Subject: [PATCH] Change to UTF8 BOM encoding --- Scripts/start-ipfs-server.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/start-ipfs-server.ps1 b/Scripts/start-ipfs-server.ps1 index 5cbbd6aa..3830352e 100755 --- a/Scripts/start-ipfs-server.ps1 +++ b/Scripts/start-ipfs-server.ps1 @@ -1,4 +1,4 @@ -<# +<# .SYNTAX start-ipfs-server.ps1 .DESCRIPTION starts a local IPFS server .LINK https://github.com/fleschutz/PowerShell @@ -9,7 +9,7 @@ try { "⚠️ Make sure your router does not block port 4001 (TCP/UDP) for IPv4/v6!" "" - "Step 1/5: searching for ipfs executable..." + "1️⃣ Step 1/5: searching for ipfs executable..." $Result = (ipfs --version) if ($lastExitCode -ne "0") { throw "Can't execute 'ipfs' - make sure IPFS is installed and available" }