Skip to content

Commit f9fead2

Browse files
committed
undone base themes change about gitStatus
1 parent 0ce05fa commit f9fead2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

themes/base.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$Host.UI.RawUI.ForegroundColor = "White"
44
Write-Host
55
Write-Host $pwd.ProviderPath -NoNewLine -ForegroundColor Green
6-
if(Get-GitStatus){
6+
if($gitStatus){
77
checkGit($pwd.ProviderPath)
88
}
99
$global:LASTEXITCODE = $realLASTEXITCODE

themes/blocky.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
$Path = $pwd.ProviderPath
55
Write-Host
66
Write-Host " $Path " -NoNewLine -ForegroundColor Black -BackgroundColor White
7-
if(Get-GitStatus){
7+
if($gitStatus){
88
checkGit($Path)
99
}
1010
if ( $realCommandStatus -eq $True ) {

themes/golagola.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function global:prompt {
1414
Write-Host "$env:USERNAME" -NoNewLine -ForegroundColor Magenta
1515
Write-Host " @" -NoNewLine -ForegroundColor Yellow
1616
Write-Host " $Path " -NoNewLine -ForegroundColor Green
17-
if(Get-GitStatus){
17+
if($gitStatus){
1818
checkGit($Path)
1919
}
2020
Write-Host "`n>" -NoNewLine -ForegroundColor $EXIT

0 commit comments

Comments
 (0)