PowerShell-Profile/functions/Test-Profile.ps1
2024-03-05 18:59:09 +01:00

8 lines
247 B
PowerShell

# gitea.RdzeN.net
# Reload $profile
function Test-Profile {
if (-not (Test-Path $PROFILE)) {
Copy-Item -Path $path_gitea_powershell_profile -Destination $PROFILE
New-SimulateTyping "Your PowerShell profile was created!"
}
}