Remove the #!/usr/bin/pwsh line

This commit is contained in:
Markus Fleschutz
2021-04-21 19:53:52 +02:00
parent 7ab2795778
commit 450869a593
184 changed files with 108 additions and 344 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/pwsh
<#
<#
.SYNTAX enable-god-mode.ps1
.DESCRIPTION enables the god mode (adds a new icon to the desktop)
.LINK https://github.com/fleschutz/PowerShell
@ -14,7 +13,7 @@ try {
}
$null = new-item @GodModeSplat
write-host -foregroundColor green "✔️ new icon added to the desktop"
"✔️ new icon added to the desktop"
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"