<#
.SYNOPSIS
	cd-scripts.ps1 
.DESCRIPTION
	Go to the PowerShell Scripts folder.
.EXAMPLE
	PS> .\cd-scripts.ps1 
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz ยท License: CC0
#>

$TargetDir = resolve-path "$PSScriptRoot"
if (-not(test-path "$TargetDir" -pathType container)) {
	write-warning "Sorry, there is no folder ๐Ÿ“‚$TargetDir (yet)"
	exit 1
}
set-location "$TargetDir"
"๐Ÿ“‚$TargetDir"
exit 0