1
+ Param ([string ]$InstallationDirectory = $ ($Env: USERPROFILE + " \.git-secrets" ))
2
+
3
+ Write-Host " Checking to see if installation directory already exists..."
4
+ if (-not (Test-Path $InstallationDirectory ))
5
+ {
6
+ Write-Host " Creating installation directory."
7
+ New-Item - ItemType Directory - Path $InstallationDirectory | Out-Null
8
+ }
9
+ else
10
+ {
11
+ Write-Host " Installation directory already exists."
12
+ }
13
+
14
+ Write-Host " Copying files."
15
+ Copy-Item ./ git- secrets - Destination $InstallationDirectory - Force
16
+ Copy-Item ./ git- secrets.1 - Destination $InstallationDirectory - Force
17
+
18
+ Write-Host " Checking if directory already exists in Path..."
19
+ $currentPath = [Environment ]::GetEnvironmentVariable(" PATH" , " User" )
20
+ if ($currentPath -notlike " *$InstallationDirectory *" )
21
+ {
22
+ Write-Host " Adding to path."
23
+ $newPath = $currentPath
24
+ if (-not ($newPath.EndsWith (" ;" )))
25
+ {
26
+ $newPath = $newPath + " ;"
27
+ }
28
+ $newPath = $newPath + $InstallationDirectory
29
+ [Environment ]::SetEnvironmentVariable(" PATH" , $newPath , " User" )
30
+ }
31
+ else
32
+ {
33
+ Write-Host " Already in Path."
34
+ }
35
+
36
+ # Adding to Session
37
+ Write-Host " Adding to user session."
38
+ $currentSessionPath = $Env: Path
39
+ if ($currentSessionPath -notlike " *$InstallationDirectory *" )
40
+ {
41
+ if (-not ($currentSessionPath.EndsWith (" ;" )))
42
+ {
43
+ $currentSessionPath = $currentSessionPath + " ;"
44
+ }
45
+ $Env: Path = $currentSessionPath + $InstallationDirectory
46
+ }
47
+
48
+ Write-Host " Done."
0 commit comments