diff --git a/install.ps1 b/install.ps1 index 535a5a6..5c4b1b1 100644 --- a/install.ps1 +++ b/install.ps1 @@ -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 } } diff --git a/install.sh b/install.sh index 870f065..a8afb77 100755 --- a/install.sh +++ b/install.sh @@ -712,7 +712,7 @@ apply_custom_file() { if [[ "${targetPath}" == *"user.js" ]]; then \cp -f "${profilePath}/chrome/user.js" "${targetPath}" else - git --git-dir "${gitDir}" --quiet checkout HEAD -- "${targetPath}" + git --git-dir "${gitDir}" checkout HEAD -- "${targetPath}" fi fi if [ "${customAppend}" == "true" ]; then @@ -852,7 +852,7 @@ file_restore() { local gitDir=$1 local gitDirty=$2 if [ -n "${gitDirty}" ]; then - git --git-dir "${gitDir}" --quiet stash pop + git --git-dir "${gitDir}" stash pop --quiet fi }