From 4c1d62c393e89d72670a7297e36f89945e135b5c Mon Sep 17 00:00:00 2001 From: Szymon Osiecki Date: Sat, 7 Oct 2023 09:40:40 +0200 Subject: [PATCH] refactor(ps): wsl_setup - ssh key msg --- wsl/wsl_setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsl/wsl_setup.ps1 b/wsl/wsl_setup.ps1 index 1f5a89fd..08310f35 100644 --- a/wsl/wsl_setup.ps1 +++ b/wsl/wsl_setup.ps1 @@ -462,7 +462,7 @@ process { ssh-keygen -t ed25519 -f "$HOME/$sshKey" -q -N '' $idPub = [System.IO.File]::ReadAllLines("$HOME/$sshKey.pub") $msg = [string]::Join("`n", - "`e[97mUse the following values to add new SSH Key on https://github.com/settings/ssh/new.", + "`e[97mUse the following values to add new SSH Key on `e[34;4mhttps://github.com/settings/ssh/new`e[97;24m", "`n`e[1;96mTitle`e[0m`n$($idPub.Split()[-1])", "`n`e[1;96mKey type`e[30m`n", "`n`e[1;96mKey`e[0m`n$idPub",