diff --git a/Scripts/set-profile.ps1 b/Scripts/set-profile.ps1 index 9d697be3..22324761 100755 --- a/Scripts/set-profile.ps1 +++ b/Scripts/set-profile.ps1 @@ -1,4 +1,4 @@ -#!/usr/bin/pwsh +#!/usr/bin/pwsh <# .SYNTAX set-profile.ps1 .DESCRIPTION sets the PowerShell profile for the current user @@ -12,7 +12,7 @@ try { copy-item "$PathToRepo/Scripts/my-profile.ps1" "$PathToProfile" -force - write-host -foregroundColor green "OK - updated profile 'CurrentUserCurrentHost' (gets active on next login)" + write-host -foregroundColor green "✔️ PowerShell profile 'CurrentUserCurrentHost' updated - gets active on next login" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"