Add logo to postInstall.ps1

Add logo to postInstall.ps1
This commit is contained in:
Namhyeon, Go 2025-12-01 17:20:38 +09:00
parent c37d42418d
commit e3ec367390

View File

@ -13,6 +13,23 @@ param(
[string]$Components = "" [string]$Components = ""
) )
# ================================
# LOGO
# ================================
$logo = @"
__ __ _ _ ____
\ \ / /__| |___ ___ _ __ | / ___|
\ \ /\ / / _ \ / __|/ _ \| '_ \ _ | \___ \
\ V V / __/ \__ \ (_) | | | | |_| |___) |
\_/\_/ \___|_|___/\___/|_| |_| \___/|____/
WelsonJS post-install script
https://github.com/gnh1201/welsonjs
"@
Write-Host $logo
# ================================ # ================================
# SCRIPT ROOT RESOLUTION # SCRIPT ROOT RESOLUTION
# ================================ # ================================