Skip to content

Commit 635895a

Browse files
committed
Add installation script to simplify setup on windows. Modified README.
1 parent ab7ff3f commit 635895a

File tree

2 files changed

+66
-4
lines changed

2 files changed

+66
-4
lines changed

README.rst

+18-4
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,29 @@ Installing git-secrets
3535
~~~~~~~~~~~~~~~~~~~~~~
3636

3737
``git-secrets`` must be placed somewhere in your PATH so that it is picked up
38-
by ``git`` when running ``git secrets``. You can use ``install`` target of the
39-
provided Makefile to install ``git secrets`` and the man page. You can
40-
customize the install path using the PREFIX and MANPREFIX variables.
38+
by ``git`` when running ``git secrets``.
39+
40+
**\*nix (Linux/OSX)**
41+
42+
You can use ``install`` target of the provided Makefile to install
43+
``git secrets`` and the man page. You can customize the install path
44+
using the PREFIX and MANPREFIX variables.
4145

4246
::
4347

4448
make install
4549

46-
Or, installing with Homebrew (for OS X users).
50+
**Windows**
51+
52+
Run the provided install.ps1 powershell script. This will copy the needed files
53+
to an installation directory ("%USERPROFILE%/.git-secrets" by default) and add
54+
the directory to the current user PATH.
55+
56+
::
57+
58+
PS > ./install.ps1
59+
60+
**Homebrew (for OS X users).**
4761

4862
::
4963

install.ps1

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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

Comments
 (0)