blob: 64959d039f53175b427b872af2ce894e8022ca12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$SCRIPT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Definition
# Completion
$completionScript = Join-Path $SCRIPT_DIR "comp\jvn_pwsl.ps1"
if (Test-Path $completionScript) {
. $completionScript
}
# Envirement
$binPath = Join-Path $SCRIPT_DIR "bin"
if (Test-Path $binPath) {
$env:PATH = "$binPath;$env:PATH"
}
|