Skip to content

Commit e119d03

Browse files
Leo D'Arcydscho
Leo D'Arcy
authored andcommitted
git update-git-for-windows: make silent installation very silent
The command successfully identifies and downloads the update however when it triggers the update it causes a license screen to display which requires user interaction. Therefore the update can't be fully automated. This is due to the installer only using the /SILENT option on the new installer. Let's add also the /VERYSILENT option so that the installer works as expected. Signed-off-by: Leo D'Arcy <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent a97ce2d commit e119d03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-extra/git-update-git-for-windows

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ update_git_for_windows () {
290290
echo "Downloading $filename" >&2
291291
fi
292292
curl -# -L -o $installer $download || return
293-
start "" "$installer" /SILENT
293+
start "" "$installer" /SILENT /VERYSILENT
294294

295295
# Kill all Bash processes (which will let MinTTY quit, too)"
296296
#

0 commit comments

Comments
 (0)