diff options
Diffstat (limited to 'scripts/deploy/jvn.ps1')
| -rw-r--r-- | scripts/deploy/jvn.ps1 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/deploy/jvn.ps1 b/scripts/deploy/jvn.ps1 new file mode 100644 index 0000000..64959d0 --- /dev/null +++ b/scripts/deploy/jvn.ps1 @@ -0,0 +1,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" +} |
