Fix: Install - Git quiet option

This commit is contained in:
alstjr7375 2022-04-22 16:41:37 +09:00
parent b1bd85d869
commit 4221cee30a
2 changed files with 4 additions and 4 deletions

View file

@ -740,7 +740,7 @@ function Apply-CustomFile() {
Copy-Item -Path "${customFile}" -Destination "${targetPath}" -Force
}
else {
git --git-dir "${gitDir}" --quiet checkout HEAD -- "${targetPath}"
git --git-dir "${gitDir}" checkout HEAD -- "${targetPath}"
}
}
if ( "${customAppend}" -eq $true ) {
@ -894,7 +894,7 @@ function Restore-File() {
)
if ( "${gitDirty}" -eq $true ) {
git --git-dir "${gitDir}" checkout stash pop
git --git-dir "${gitDir}" checkout stash pop --quiet
}
}