Skip to content

Commit d9e78e0

Browse files
committed
net-installer: be more chatty
Users like to know what is going on... Signed-off-by: Johannes Schindelin <[email protected]>
1 parent f8c0f01 commit d9e78e0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

net-installer/setup-git-sdk.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,14 @@
7272
)
7373

7474
@REM Install shortcut on the desktop
75+
@ECHO.
76+
@ECHO Installing the 'Git SDK @@BITNESS@@-bit' shortcut on the Desktop
7577
@bash --login -c 'SHORTCUT="$HOME/Desktop/Git SDK @@BITNESS@@-bit.lnk"; test -f "$SHORTCUT" ^|^| create-shortcut.exe --icon-file /msys2.ico --work-dir / /git-bash.exe "$SHORTCUT"'
7678

7779
@REM now clone the Git sources, build it, and start an interactive shell
80+
@ECHO.
81+
@ECHO Running Git Bash to build Git and run an interactive Bash session
82+
@ECHO This window will close automatically once that session is over
7883
@mintty -i /msys2.ico bash --login -c "test -s /mingw@@BITNESS@@/ssl/certs/ca-bundle.crt || pacman -S --noconfirm mingw-w64-@@ARCH@@-ca-certificates; mkdir -p /usr/src && cd /usr/src && for project in MINGW-packages MSYS2-packages build-extra; do mkdir -p $project && (cd $project && git init && git config core.autocrlf false && git remote add origin https://github.com/git-for-windows/$project); done; git clone -b @@GIT_BRANCH@@ -c core.autocrlf=false https://github.com/git-for-windows/git && cd git && make install; bash --login -i"
7984

8085
@IF ERRORLEVEL 1 PAUSE

0 commit comments

Comments
 (0)