Fix git flow
installation for windows
This commit is contained in:
parent
e064c3fd01
commit
62a82f6564
2 changed files with 3 additions and 9 deletions
|
@ -1,8 +0,0 @@
|
|||
$tempDir = Join-Path $([System.IO.Path]::GetTempPath()) $([System.IO.Path]::GetRandomFileName());
|
||||
$null = New-Item -ItemType Directory $tempDir;
|
||||
|
||||
Push-Location "$tempDir";
|
||||
. "$PSScriptRoot/config.sh";
|
||||
Pop-Location;
|
||||
|
||||
Remove-Item -Recurse "$tempDir";
|
|
@ -1,2 +1,4 @@
|
|||
. "$PSScriptRoot/setup/install.sh";
|
||||
. "$PSScriptRoot/flow/install.ps1";
|
||||
|
||||
$bashPath = [System.IO.Path]::Join((Get-Command "git").Source, "..", "..", "git-bash.exe");
|
||||
Start-Process -Wait -FilePath "$bashPath" -ArgumentList "$PSScriptRoot/flow/install.sh";
|
||||
|
|
Loading…
Reference in a new issue