summaryrefslogtreecommitdiff
path: root/scripts/deploy/jvn_powershell.ps1
blob: 495ed43da8822eadc3943d33f4616f8d546f6cc1 (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\comp.ps1"
if (Test-Path $completionScript) {
    . $completionScript
}

# Envirement
$binPath = Join-Path $SCRIPT_DIR "bin"
if (Test-Path $binPath) {
    $env:PATH = "$binPath;$env:PATH"
}